Docker-compose: do not access ports <443 (#3261)

* Do not try accessing ports <1024

* adapt nginx reverse proxy for element web

---------

Co-authored-by: fkwp <github-fkwp@w4ve.de>
This commit is contained in:
Timo
2025-05-19 14:18:03 +02:00
committed by GitHub
parent cc8ab0ac93
commit 0110465b38
2 changed files with 5 additions and 6 deletions

View File

@@ -145,11 +145,11 @@ server {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://element-web:81;
proxy_pass http://element-web:8081;
proxy_ssl_verify off;
}
error_page 500 502 503 504 /50x.html;
}
}