加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
default.conf 582 Bytes
一键复制 编辑 原始数据 按行查看 历史
shellrock 提交于 2015-09-06 15:23 . fix 404
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
server_name localhost;
root /app;
index index.php index.html index.htm;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /app;
}
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
# try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化