1 Star 22 Fork 4

Halo / halo-common

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
nginx.conf 387 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ryan Wang 提交于 2021-05-19 22:12 . Update nginx.conf
upstream halo {
server 127.0.0.1:8090;
}
server {
listen 80;
listen [::]:80;
server_name www.yourdomain.com;
client_max_body_size 1024m;
location / {
proxy_pass http://halo;
proxy_set_header HOST $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
Logos
1
https://gitee.com/halo-dev/halo-common.git
git@gitee.com:halo-dev/halo-common.git
halo-dev
halo-common
halo-common
master

搜索帮助