码迷,mamicode.com
首页 > 其他好文 > 详细

nginx 配置 server

时间:2018-08-06 16:27:41      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:highlight   list   nginx   默认   项目文件   路径   oca   ams   off   

server{
    listen          80;
    server_name     test.eoews.cn;
    #项目文件的路径
    root    "D:/developer/study/PHPTutorial/WWW/project/eoews";
    #默认寻找打开文件
    location / {
        #默认打开的文件
        index index.html index.htm index.php l.php;
        #打开目录浏览功能
        autoindex   off;
        #重写机制
        if (!-e $request_filename) {
                rewrite  ^/(.*)$  /index.php/$1  last;
                break;
        }
    }
    #将服务器错误重定向到指定的静态页面中
    error_page  500 502 503 504 D:/developer/study/PHPTutorial/nginx/html/50x.html;

    location = /50x.html {
        root D:/developer/study/PHPTutorial/nginx/html;
    }

    location ~ \.php(.*)$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        fastcgi_param  PATH_INFO  $fastcgi_path_info;
        fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
        include        fastcgi_params;
    }
}

 

nginx 配置 server

标签:highlight   list   nginx   默认   项目文件   路径   oca   ams   off   

原文地址:https://www.cnblogs.com/wjm956/p/9430789.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!