Fix HTTPS redirect in example NGINX config

This commit is contained in:
Sean Whalen
2018-07-31 10:48:04 -04:00
parent c3a862c245
commit 46fdbc79a2
+1 -1
View File
@@ -373,7 +373,7 @@ Create the web server configuration
server {
listen 80;
return 301 https://$server_name$request_uri;
return 301 https://$host$request_uri;
}