1 Star 0 Fork 1

jamsf93/docker-zdir

forked from Fenei/docker-zdir 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
zdir.conf 612 Bytes
一键复制 编辑 原始数据 按行查看 历史
root 提交于 2020-10-16 01:40 . some update
server {
listen 80;
server_name localhost;
#access_log /var/log/zdir.log combined;
index zdir/index.php index.html index.htm index.php;
root /data;
#rewrite
rewrite ^/static/(.+) /zdir/static/$1 break;
#error_page 404 /404.html;
#error_page 502 /502.html;
location ~ [^/]\.php(/|$) {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp4|ico)$ {
expires 30d;
access_log off;
}
location ~ .*\.(js|css)?$ {
expires 7d;
access_log off;
}
location ~ /\.ht {
deny all;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jamsf93/docker-zdir.git
git@gitee.com:jamsf93/docker-zdir.git
jamsf93
docker-zdir
docker-zdir
master

搜索帮助