Skip to content
Snippets Groups Projects
Verified Commit 6c07fe5e authored by Jan Alexander Steffens (heftig)'s avatar Jan Alexander Steffens (heftig)
Browse files

maintenance: Don't use permanent redirects

They might conflict with the normal configuration, so we don't want
these redirects to get cached.
parent b7392414
No related branches found
No related tags found
1 merge request!852Add support for "legacy" RSA 4096 certs
......@@ -16,7 +16,7 @@ server {
location / {
access_log off;
return 301 https://$server_name$request_uri;
return 302 https://$server_name$request_uri;
}
}
......@@ -36,7 +36,7 @@ server {
location / {
access_log off;
return 301 https://{{ service_domain }};
return 302 https://{{ service_domain }};
}
}
......@@ -54,7 +54,7 @@ server {
location / {
access_log off;
return 301 https://$server_name$request_uri;
return 302 https://$server_name$request_uri;
}
}
......
......@@ -12,7 +12,7 @@ server {
location / {
access_log off;
return 301 https://$server_name$request_uri;
return 302 https://$server_name$request_uri;
}
}
......@@ -32,7 +32,7 @@ server {
location / {
access_log off;
return 301 https://{{ service_domain }};
return 302 https://{{ service_domain }};
}
}
......@@ -50,7 +50,7 @@ server {
location / {
access_log off;
return 301 https://$server_name$request_uri;
return 302 https://$server_name$request_uri;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment