server {
listen 80;
server_name localhost;
access_log /usr/local/logs/nginx/access.log main;
root /home/www/jianshu/public;
index index.html index.htm index.php;
#图片缓存时间
location ~* \.(ico|jpe?g|gif|png|bmp|swf|flv)$ {
expires 30d;
#log_not_found off;
access_log off;
}
#JS和CSS缓存时间
location ~* \.(js|css)$ {
expires 7d;
log_not_found off;
access_log off;
}
error_page 500 502 503 504 /50x.html;
location @rewrites {
rewrite ^/(.*)$ /index.php?_url=/$1;
}
location / {
try_files $uri $uri/ @rewrites;
}
location = /robots.txt {
access_log off;
log_not_found off;
}
location ~ \.php$ {
fastcgi_pass php_group;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
laravel部署的nginx配置
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
推荐阅读更多精彩内容
- niginx 的配置文件中必须包含try_files $uri $uri/ /index.php?$query_s...
- server {listen 80;server_name 你的域名;root 网站的根目录;index ...
- 注意(本文主要介绍两种版本的lnmp环境配置) Ubuntu16.04+nginx1.10+php7+Mysql5...