update proxy

This commit is contained in:
2026-03-19 15:02:05 -07:00
parent 854b7a2338
commit d813c3c70e
3 changed files with 28 additions and 1 deletions

View File

@@ -7,6 +7,14 @@ server {
location /gutty{
proxy_pass http://gitea:3000;
}
location /nextcloud{
client_max_body_size 512M;
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;
proxy_pass http://nextcloud/;
}
}