From 9b45729da8a094f8c098216ddfabab53e566dfc5 Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Mon, 18 Aug 2025 15:21:46 -0700 Subject: Remove .int --- .../http.mistymountainstherapy.com.conf | 8 ++++++++ .../http.www.mistymountainstherapy.com.conf | 8 ++++++++ .../https.mistymountainstherapy.com.conf | 21 +++++++++++++++++++++ .../https.www.mistymountainstherapy.com.conf | 19 +++++++++++++++++++ 4 files changed, 56 insertions(+) create mode 100644 playbooks/roles/nginx/templates/www.mistymountainstherapy.com/http.mistymountainstherapy.com.conf create mode 100644 playbooks/roles/nginx/templates/www.mistymountainstherapy.com/http.www.mistymountainstherapy.com.conf create mode 100644 playbooks/roles/nginx/templates/www.mistymountainstherapy.com/https.mistymountainstherapy.com.conf create mode 100644 playbooks/roles/nginx/templates/www.mistymountainstherapy.com/https.www.mistymountainstherapy.com.conf (limited to 'playbooks/roles/nginx/templates/www.mistymountainstherapy.com') diff --git a/playbooks/roles/nginx/templates/www.mistymountainstherapy.com/http.mistymountainstherapy.com.conf b/playbooks/roles/nginx/templates/www.mistymountainstherapy.com/http.mistymountainstherapy.com.conf new file mode 100644 index 0000000..fc6e8f6 --- /dev/null +++ b/playbooks/roles/nginx/templates/www.mistymountainstherapy.com/http.mistymountainstherapy.com.conf @@ -0,0 +1,8 @@ +server { + listen 80; + server_name mistymountainstherapy.com; + + location / { + rewrite ^ https://mistymountainstherapy.com$request_uri? permanent; + } +} diff --git a/playbooks/roles/nginx/templates/www.mistymountainstherapy.com/http.www.mistymountainstherapy.com.conf b/playbooks/roles/nginx/templates/www.mistymountainstherapy.com/http.www.mistymountainstherapy.com.conf new file mode 100644 index 0000000..d165e01 --- /dev/null +++ b/playbooks/roles/nginx/templates/www.mistymountainstherapy.com/http.www.mistymountainstherapy.com.conf @@ -0,0 +1,8 @@ +server { + listen 80; + server_name www.mistymountainstherapy.com; + + location / { + rewrite ^ https://mistymountainstherapy.com$request_uri? permanent; + } +} diff --git a/playbooks/roles/nginx/templates/www.mistymountainstherapy.com/https.mistymountainstherapy.com.conf b/playbooks/roles/nginx/templates/www.mistymountainstherapy.com/https.mistymountainstherapy.com.conf new file mode 100644 index 0000000..6cdd63f --- /dev/null +++ b/playbooks/roles/nginx/templates/www.mistymountainstherapy.com/https.mistymountainstherapy.com.conf @@ -0,0 +1,21 @@ +server { + server_name 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/mistymountainstherapy.com/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/mistymountainstherapy.com/privkey.pem; + + location / { + proxy_pass http://127.0.0.1:8821; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header Host $host; + } +} diff --git a/playbooks/roles/nginx/templates/www.mistymountainstherapy.com/https.www.mistymountainstherapy.com.conf b/playbooks/roles/nginx/templates/www.mistymountainstherapy.com/https.www.mistymountainstherapy.com.conf new file mode 100644 index 0000000..c6ae568 --- /dev/null +++ b/playbooks/roles/nginx/templates/www.mistymountainstherapy.com/https.www.mistymountainstherapy.com.conf @@ -0,0 +1,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; + } +} -- cgit v1.2.3-70-g09d2