9 lines
167 B
Plaintext
9 lines
167 B
Plaintext
|
server {
|
||
|
listen 80;
|
||
|
server_name auth.mistymountainstherapy.com;
|
||
|
|
||
|
location / {
|
||
|
rewrite ^ https://auth.mistymountainstherapy.com$request_uri? permanent;
|
||
|
}
|
||
|
}
|