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