summaryrefslogtreecommitdiff
path: root/playbooks/roles/nginx/templates/www.mistymountainstherapy.com/http.mistymountainstherapy.com.conf
blob: fc6e8f60030129ada22875e4c0ce09ee9138e1d8 (plain)
1
2
3
4
5
6
7
8
server {
  listen 80;
  server_name mistymountainstherapy.com;

  location / {
    rewrite ^ https://mistymountainstherapy.com$request_uri? permanent;
  }
}