6 Star 19 Fork 29

ymm-tech / gods-pen-docker

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
nginx.conf 607 Bytes
一键复制 编辑 原始数据 按行查看 历史
mingyuanwei 提交于 2019-05-24 18:53 . Update nginx.conf
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
# gzip
gzip on;
gzip_min_length 256;
gzip_vary on;
gzip_types *;
# main
# location = / {
# rewrite / /doc/ redirect;
# }
# 所有静态资源及缓存
location ~* .*\.(jpg|gif|jpeg|css|png|js|wasm) {
expires 10d;
}
# view history 模式 如果修改了VIEW_PATH,请修改'view'为实际值
location ~* ^\/view\/[a-zA-Z0-9]+(\/|\?.*|)$ {
index index.html;
try_files $uri $uri/ /view/index.html;
}
# api 反向代理
location ^~ /api {
proxy_pass http://godspen:7051;
}
}
Docker
1
https://gitee.com/ymm-tech/gods-pen-docker.git
git@gitee.com:ymm-tech/gods-pen-docker.git
ymm-tech
gods-pen-docker
gods-pen-docker
master

搜索帮助