nginx负载均衡配置详解_Laravel的Nginx配置详解

更新时间:2019-05-11    来源:nginx    手机版     字体:

【www.bbyears.com--nginx】

例子

 代码如下

server {
    listen 80;
    server_name tool.lu;
    root /var/www/html/www.111cn.net/public;
    index index.html index.php;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ .php$ {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
}

if (!-f $request_filename)貌似并不是一个好的做法

本文来源:http://www.bbyears.com/caozuoxitong/50566.html