Nginx 는 windows 와 Linux 환경 에서 정적 자원 서버 를 구축 합 니 다.

7682 단어 전단nginx
Nginx 정적 자원 서버 구축
  • 1. Nginx
  • 2. windows 에 설치
  • 2.1, 프로필
  • 2.2, 프로필
  • 2.2.1、nginx.conf
  • 2.2.2, upload. conf 파일
  • 2.3, window 아래 구덩이
  • 1. Nginx
    Nginx 다운로드
    윈도 우즈 에 설치
    윈도 에 설치 하 는 것 은 비교적 간단 하 다. 다운 로드 된 Nginx 만 풀 면 된다.
    2.1 설정 파일
    설정 파일 에서 경로 문제 가 발생 하면 주의해 야 할 것 은 바 뀔 수 있 습 니 다. 쌍 슬 래 쉬 로 써 야 합 니 다.
    # Windows       
    D:\work
    ginx-1.17.7\upload # D:\\work\
    ginx-1.17.7\\upload

    2.2 설정 파일
    2.2.1、nginx.conf
    
    #user  administrator owner;
    worker_processes  1;
    
    #error_log  logs/error.log;
    #error_log  logs/error.log  notice;
    #error_log  logs/error.log  info;
    
    #pid        logs/nginx.pid;
    
    
    events {
        worker_connections  1024;
    }
    
    
    http {
        include       mime.types;
        default_type  application/octet-stream;
    
        #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
        #                  '$status $body_bytes_sent "$http_referer" '
        #                  '"$http_user_agent" "$http_x_forwarded_for"';
    
        #access_log  logs/access.log  main;
    
        sendfile        on;
        #tcp_nopush     on;
    
        #keepalive_timeout  0;
        keepalive_timeout  65;
    
        #gzip  on;
    
        server {
            listen       9000;
            server_name  localhost;
    
            #charset koi8-r;
    
            #access_log  logs/host.access.log  main;
    
            location / {
                root   html;
                index  index.html index.htm;
            }
    
            #error_page  404              /404.html;
    
            # redirect server error pages to the static page /50x.html
            #
            error_page   500 502 503 504  /50x.html;
            location = /50x.html {
                root   html;
            }
    
            # proxy the PHP scripts to Apache listening on 127.0.0.1:80
            #
            #location ~ \.php$ {
            #    proxy_pass   http://127.0.0.1;
            #}
    
            # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
            #
            #location ~ \.php$ {
            #    root           html;
            #    fastcgi_pass   127.0.0.1:9000;
            #    fastcgi_index  index.php;
            #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            #    include        fastcgi_params;
            #}
    
            # deny access to .htaccess files, if Apache's document root
            # concurs with nginx's one
            #
            #location ~ /\.ht {
            #    deny  all;
            #}
        }
    
    
        # another virtual host using mix of IP-, name-, and port-based configuration
        #
        #server {
        #    listen       8000;
        #    listen       somename:8080;
        #    server_name  somename  alias  another.alias;
    
        #    location / {
        #        root   html;
        #        index  index.html index.htm;
        #    }
        #}
    
    
        # HTTPS server
        #
        #server {
        #    listen       443 ssl;
        #    server_name  localhost;
    
        #    ssl_certificate      cert.pem;
        #    ssl_certificate_key  cert.key;
    
        #    ssl_session_cache    shared:SSL:1m;
        #    ssl_session_timeout  5m;
    
        #    ssl_ciphers  HIGH:!aNULL:!MD5;
        #    ssl_prefer_server_ciphers  on;
    
        #    location / {
        #        root   html;
        #        index  index.html index.htm;
        #    }
        #}
        include D:\\work\
    ginx-1.17.7\\upload\\upload.conf; }

    2.2.2. upload. conf 파일
    server
    { 
      charset utf-8;
      listen 8089;
      server_name http_host;
      root D:\\work\
    ginx-1.17.7\\upload; autoindex on; add_header Cache-Control "no-cache, must-revalidate"; location / { add_header Access-Control-Allow-Origin *; } }

    2. window 아래 구덩이
    windows 에서 Nginx 를 시작 하 는 방식 은 nginx. exe 파일 을 직접 두 번 눌 러 서 실행 합 니 다.하지만 닫 으 려 면 아래 명령 을 통 해서 도 닫 을 수 없 는 경우 가 있 습 니 다.
    ./nginx.exe -s stop
    

    이 럴 때 는 아래 의 비장의 카드 를 사용 하여 모든 Nginx 서 비 스 를 직접 kill 할 수 있 습 니 다.
    taskkill  /im nginx.exe  -f
    

    좋은 웹페이지 즐겨찾기