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

nginx 配置

时间:2017-01-16 13:08:55      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:span   document   vhost   ams   local   admin   params   path   index   

server {
    listen 80;
    server_name admin.mailejingcai.com;
    access_log logs/credits.access.log;

    root /vagrant/admin.mailejingcai.com/web;

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

    location ~ \.php(?|$) {
        #fastcgi(php-fpm) listening on 127.0.0.1:9000
        #root /var/www/html/techbrood/web;
        #your path to fastcgi_params file
        
    include /usr/local/nginx/conf/fastcgi_params; 
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_pass 127.0.0.1:9000;
        #fastcgi_pass unix: /var/run/php-fpm.sock
    }

    location ~ \.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt)$ {
        root /vagrant/admin.mailejingcai.com/web;
    }
}

cd /usr/local/nginx/conf/vhosts

nginx 配置

标签:span   document   vhost   ams   local   admin   params   path   index   

原文地址:http://www.cnblogs.com/vania/p/6289148.html

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