summaryrefslogtreecommitdiff
path: root/playbooks/roles/nginx/templates/www.mistymountainstherapy.com/https.www.mistymountainstherapy.com.conf
blob: c6ae568327238bcea5459d4204658c5b1bd85f8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
server {
  server_name www.mistymountainstherapy.com;
  listen 443 ssl;

  ssl_dhparam /etc/nginx/dhparams.pem;
  
  ssl_session_timeout 1d;
  ssl_session_tickets off;
  ssl_protocols TLSv1.2 TLSv1.3;
  ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-CHACHA20-POLY1305;
  ssl_prefer_server_ciphers off;

  ssl_certificate /etc/letsencrypt/live/www.mistymountainstherapy.com/fullchain.pem;
  ssl_certificate_key /etc/letsencrypt/live/www.mistymountainstherapy.com/privkey.pem;

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