bundles/nginx: use http 308 for https redirect
All checks were successful
bundlewrap/pipeline/head This commit looks good

basically "go away. nothing's here. use https forever."
This commit is contained in:
Franzi 2020-10-30 15:24:24 +01:00
parent 3c1361a2eb
commit 8eeaabf615
Signed by: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -4,7 +4,7 @@ server {
server_name _;
location / {
return 301 https://$host$request_uri;
return 308 https://$host$request_uri;
}
location /.well-known/acme-challenge/ {