fix (proxy): use correct Docker network address in nginx config for forgejo

This commit is contained in:
thomasabishop 2025-04-06 10:38:00 +01:00
parent eb51038270
commit c6068a63d8

View file

@ -23,7 +23,7 @@ server {
# Proxy Configuration
location / {
proxy_pass http://linkding:3000; # Docker network address
proxy_pass http://forgejo:3000; # Docker network address
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;