知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

Nginx.conf的设置用于Zend Framework项目

发布时间:2014-09-05 16:34:02作者:知识屋

server {
02
     listen       80;
03
     server_name  wenda.localhost.com;
04
     index index.html index.htm index.php;
05
     root   /wnmp/www/wenda;
06
     autoindex on;
07
     
08
     #error_page  404     /404.html;
09
 
10
     # redirect server error pages to the static page /50x.html
11
     #
12
     error_page   500 502 503 504  /50x.html;
13
     location = /50x.html {
14
         root  /wnmp/www;
15
     }
16
 
17
      location / {
18
         index  index.php index.html index.htm;
19
         if (-f $request_filename) {
20
             break;
21
         }
22
         if (-d $request_filename) {
23
             break;
24
         }
25
         rewrite ^(.+)$ /index.php last;
26
     }
27
 
28
     location ~ .*/.(php|php5)?$ {
29
         fastcgi_pass   127.0.0.1:9000;
30
         include /wnmp/nginx/conf/fastcgi_params;
31
     }
32
 }
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜