Add HTTP->HTTPS redirect after certs are available

This commit is contained in:
Matthew Wild 2021-01-29 16:46:20 +00:00
parent 18df7a72f4
commit d7a143ce5c
1 changed files with 1 additions and 14 deletions

View File

@ -4,20 +4,7 @@ server {
server_name ${SNIKKET_DOMAIN};
server_name groups.${SNIKKET_DOMAIN};
include "/etc/nginx/snippets/snikket-common.conf";
}
server {
listen ${SNIKKET_TWEAK_HTTP_PORT};
listen [::]:${SNIKKET_TWEAK_HTTP_PORT};
server_name share.${SNIKKET_DOMAIN};
location /upload/ {
proxy_pass http://localhost:${SNIKKET_TWEAK_INTERNAL_HTTP_PORT};
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
}
return 301 https://$host$request_uri;
}