宗小宗-PHP程序猿

欢迎各位朋友前来,如果我的文章中有不对的地方,还望指正;如需转载,请注明原处

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 ;
    } }

 

posted @ 2016-03-31 18:12  宗小宗  阅读(294)  评论(0编辑  收藏  举报