uchill/docker/nginx/conf.d/gitea.conf

13 lines
349 B
Plaintext

server {
listen 80;
server_name gitea.uchill.online;
location / {
proxy_pass http://172.17.0.1:3001;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}