Files
trac/etc/nginx/http.d/trac.conf
status404 82c821003f
All checks were successful
Build docker image and push to registry.bitdeals.org / main-build-job (push) Successful in 1m46s
fix act_runner build job
2026-03-06 12:42:25 +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;
}