lnmp之nginx配置文件

2020-04-04  本文已影响0人  zhaoyanping
server {
        listen       80;
        server_name  myhost.cn;
 
        location / {
            root   /User/Mac/www/myhost.cn;
            index  index.html index.htm index.php;
            if ( !-e $request_filename ) {
                rewrite ^/(.*)? /index.php?/$1 last;
                break;
            }
        }
 
        location ~ \.php$ {
            root /User/Mac/www/myhost.cn;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }
 
        error_log /www/logs/myhost.cn_error.log;
        access_log /www/logs/myhost.cn_access.log main;
}
上一篇下一篇

猜你喜欢

热点阅读