1. 程式人生 > >Laravel安裝-nginx配置文件修改

Laravel安裝-nginx配置文件修改

vhost 新增 hat err 註釋 css info rect 1.4

  

環境:

CentOS7.3

lnmp 1.4

配置文件:

nginx.conf 默認配置 不做修改

主要是 vhost 配置文件:

舉例 :

lnmp vhost add

虛擬域名 laravel.local.com

網站路徑 /home/wwwroot/larvel/public

配置文件:

laravel.local.com.conf



server
{
listen 80;
#listen [::]:80;
server_name laravel.local.com ;
index index.html index.htm index.php default.html default.htm default.php;
root /home/wwwroot/laravel/public;


include y.conf;
#error_page 404 /404.html;


# Deny access to PHP files in specific directory
#location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }


#註意這裏註釋掉不然 報錯500 ,因為引入了php 配置,其中有句 try_files 開啟就有報錯
#include enable-php.conf;



#新增 支持laravel 優雅鏈接,在laravel 文檔裏有說明
location / {
try_files $uri $uri/ /index.php?$query_string;
}


#新增 支持php 的配置
location ~ \.php$ {

#不能有下面這句 try_files ,不然報錯500
# try_files $uri /index.php =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;

#這句註意 後面是.sock 不是127.0.0..1

fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;

include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

}



#下面的默認不做修改

location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}


location ~ .*\.(js|css)?$
{
expires 12h;
}


location ~ /.well-known {
allow all;
}


location ~ /\.
{
deny all;
}


access_log /home/wwwlogs/laravel.local.com.log;
}

3.超級大坑

如果 是用 lnmp vhost add 命令 添加的虛擬域名

會在根目錄生成 .user.ini

這個.user.ini 一定要刪掉,不然怎麽配置都是報錯500

刪除方法:
在 根目錄,即 .user.ini 所在目錄

chattr -i .user.ini

rm .user.ini

Laravel安裝-nginx配置文件修改