1 Star 0 Fork 46

傲笑红尘/ebank

forked from yybawang/ebank 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ebank_nginx.conf 573 Bytes
一键复制 编辑 原始数据 按行查看 历史
yybawang 提交于 2018-08-08 18:15 . :memo:优化说明
server {
listen 80;
listen [::]:80;
server_name ebank.com www.ebank.com;
root /var/www/ebank/public;
index index.php;
location ~ \.php$ {
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;
}
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ /\.ht {
deny all;
}
error_log /var/log/nginx/ebank_error.log debug;
access_log /var/log/nginx/ebank_access.log;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/casson/ebank.git
git@gitee.com:casson/ebank.git
casson
ebank
ebank
master

搜索帮助