nginx 가 windows 환경 에서 location 에서 루트 경로 의 빈 칸 문 제 를 해결 합 니 다.

3534 단어
nginx 는 Windows 환경 에서 location 에서 루트 경로 에 빈 칸 문제 해결 방안 이 있 습 니 다.

#user  nobody;
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       8090;
        server_name  localhost;
        root         D://workspaces//test//member.website//src//main//webapp;
        access_log  logs/access.log;
        error_log logs/error.log;

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        error_page  404              /404.html;

        location ~ /opleo {
            proxy_pass http://leo.op.com;
        }

        location ~ \.(ipa|apk|bmp|css|doc|docx|et|exe|gif|htm|html|ico|jpg|js|pdf|png|rar|swf|txt|xls|xlsx|xsl|zip|eot|svg|ttf|woff|log|json|php)$
        {
          expires  20s;
        }

        location / {
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_pass   http://127.0.0.1:7001;
            #proxy_pass   http://backed;
        }

    }


    # another virtual host using mix of IP-, name-, and port-based     configuration

    server {
        listen       8990;
        server_name  localhost;
        location = / {
            root   "D:/Program Files (x86)/cdn";
        }
}
}

위 코드 의 nginx 설정 에서 8990 포트 에 대응 하 는 모든 요청 은 D: \ Program Files (x86) \ \ cdn 디 렉 터 리 로 대 리 됩 니 다. 경로 에 빈 칸 이 포함 되 어 있 습 니 다. 전체 경 로 를 더 블 따옴표 로 만 들 면 OK 입 니 다. 블 로 거들 이 직접 시도 한 지 오래 되 어서 야 모든 문 제 를 해결 할 수 있 습 니 다.빈 칸 앞 에 '\' 역 슬 래 쉬 를 붙 이면 되 는 것 같 아 요.

좋은 웹페이지 즐겨찾기