ini laravel nginx虚拟主机配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ini laravel nginx虚拟主机配置相关的知识,希望对你有一定的参考价值。
server {
listen 80;
server_name laravel.loc;
root /vagrant/www/laravel.loc/public;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/laravel.loc.log error;
sendfile off;
client_max_body_size 100m;
location ~ \.php {
include fastcgi_params;
fastcgi_keep_conn on;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors off;
fastcgi_pass unix:/var/run/php-fpm.sock;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
}
location ~ /\.ht {
deny all;
}
}
以上是关于ini laravel nginx虚拟主机配置的主要内容,如果未能解决你的问题,请参考以下文章
ini Nginx配置基于/ api / v1 url路径的多个laravel站点
[Linux]lnmp一键安装包,访问yii/tp5/laravel的时候,报错500或者空白页面
ini nginx_laravel.conf
ini nginx virtualhost laravel
ini 示例Nginx Laravel服务器块
ini 使用nginx缓存并响应Web请求#nginx #php #performance #laravel