Files
trac/etc/nginx/http.d/trac.conf
status404 f354e1a1e8
Some checks failed
Build docker image and push to registry.bitdeals.org / main-build-job (push) Failing after 27s
fix act_runner build job
2026-03-06 12:19:23 +03:00

15 lines
320 B
Plaintext

server {
server_name _;
location / {
proxy_pass http://localhost:8055;
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;
}
listen 80;
}