1 Star 0 Fork 25

小1314王 / 小马考试通ponyexam(PHP版本)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
nginx配置参考.txt 957 Bytes
一键复制 编辑 原始数据 按行查看 历史
小马教学 提交于 2022-08-24 14:45 . 增加nginx环境配置参考文件
server {
listen 80;
# 具体域名需要修改
server_name localhost;
# 实际安装的目录需要修改
root "d:/ponyexam/pc/public";
location / {
index index.php index.html error/index.html;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
error_page 404 /error/404.html;
error_page 500 /error/500.html;
autoindex off;
}
location ~ \.php(.*)$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
}
}
PHP
1
https://gitee.com/xiao13wang14/ponyexam.git
git@gitee.com:xiao13wang14/ponyexam.git
xiao13wang14
ponyexam
小马考试通ponyexam(PHP版本)
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891