nginx/nginx/default.conf aktualisiert

This commit is contained in:
Peter Reichart 2024-08-27 12:39:53 +00:00
parent 8cf1b1eab0
commit f1d829c2e0

View File

@ -1,11 +1,12 @@
# ---- Listen on port 80 and redirect to https-Port 443
server {
listen 80;
server_name test;
return 301 https://$host$request_uri;
}
# ---- Dashboard
# ---- Listen on https-Port 443 and redirect all to docker container
server {
listen 443 ssl;