Browse Source

add port_in_redirect off, no idea if necessary but it flippin works

master
Charles Reid 7 years ago
parent
commit
5c90488859
  1. 3
      conf.d/http.com.charlesreid1.conf

3
conf.d/http.com.charlesreid1.conf

@ -48,6 +48,7 @@ server { @@ -48,6 +48,7 @@ server {
listen 80;
listen [::]:80;
server_name pages.charlesreid1.com;
port_in_redirect off;
location / {
return 301 https://pages.charlesreid1.com$request_uri;
}
@ -57,6 +58,7 @@ server { @@ -57,6 +58,7 @@ server {
listen 80;
listen [::]:80;
server_name hooks.charlesreid1.com;
port_in_redirect off;
location / {
return 301 https://hooks.charlesreid1.com$request_uri;
}
@ -66,6 +68,7 @@ server { @@ -66,6 +68,7 @@ server {
listen 80;
listen [::]:80;
server_name bots.charlesreid1.com;
port_in_redirect off;
location / {
return 301 https://bots.charlesreid1.com$request_uri;
}

Loading…
Cancel
Save