Add WWW to server name Nginx conf file

This commit is contained in:
Nathan Chapman 2023-01-22 01:05:05 -07:00
parent 1867a65bfd
commit 63d2c752d9

View File

@ -10,7 +10,7 @@ server {
server {
listen 80;
listen [::]:80;
server_name ptcoffee.com;
server_name ptcoffee.com www.ptcoffee.com;
return 301 https://$server_name$request_uri;
}