-1

有人可以帮我配置我的 nginx 在哪里:

/app -> 是本地的html页面

/ -> 是没有app文件夹的https服务器

以下conf对我不起作用:(

server {
    listen              80;
    ssl_verify_client   off;
    server_name         localhost;
    location / {
        proxy_pass_header Server;
        proxy_set_header  Host $http_host;
        proxy_set_header  X-Real-IP $remote_addr;
        proxy_set_header  X-Scheme $scheme;
        proxy_pass        https://xx.xx.xx.xx/;
    }
    location /app {
      root "c:\LOCAL_PATH\app";
      index  index.html;
    }
}
4

1 回答 1

0

将您的 -block 换成location /以下应该这样做:

location / { rewrite ^ https://$host$request_uri?; }
于 2012-11-13T06:58:15.370 回答