Nginx反向代理配置文件

server {
    listen 192.168.66.88:8005;
    server_name 192.168.66.88:8005;

    root E:/Upays/public/;

    index index.php index.html;

    log_not_found off;
    access_log logs/upay-access.log;

    charset utf-8;

    location ~ /. { deny all; }
    location = /favicon.ico { }
    location = /robots.txt { }


    location / {
         if (!-e $request_filename) {
         rewrite  ^(.*)$  /index.php?s=$1  last;
          break;
        }
   }

    location ~ .php$ {
        try_files $uri /index.php =404;
        fastcgi_pass 127.0.0.1:9054;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
        include fastcgi_params;
    }

  location /newsite/ {
        proxy_pass    http://192.168.66.89:8002;
        proxy_redirect default ;
    } }
原文地址:https://www.cnblogs.com/xiaozong/p/5342209.html