5 Star 30 Fork 4

秋枫雁飞/WelineFramework

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nginx.sample.conf 732 Bytes
一键复制 编辑 原始数据 按行查看 历史
秋枫雁飞 提交于 2024-12-10 14:55 . v2
upstream fastcgi_backend {
# use tcp connection
# server 127.0.0.1:9000;
# or socket
server unix:/tmp/php-cgi-82.sock;
}
server
{
listen 80;
server_name 127.0.0.1;
index index.php index.html index.htm default.php default.htm default.html;
set $WELINE_ROOT /www/WelineFramework/;
#禁止访问的文件或目录
location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
{
return 404;
}
#一键申请SSL证书验证目录相关设置
location ~ \.well-known{
allow all;
}
# 导入nginx配置
include /www/WelineFramework/nginx.conf;
access_log /www/wwwlogs/127.0.0.1.log;
error_log /www/wwwlogs/127.0.0.1.error.log;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/aiweline/WelineFramework.git
git@gitee.com:aiweline/WelineFramework.git
aiweline
WelineFramework
WelineFramework
dev

搜索帮助