summaryrefslogtreecommitdiff
path: root/playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-08-18 15:21:46 -0700
committerElizabeth Hunt <me@liz.coffee>2025-08-18 15:21:46 -0700
commit9b45729da8a094f8c098216ddfabab53e566dfc5 (patch)
tree400ff69699b009a25edd16bac149ec83551cf1d7 /playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com
parent6bc2e3f47c674852614a50404e9fb50ff7dedfac (diff)
downloadmmt-infra-9b45729da8a094f8c098216ddfabab53e566dfc5.tar.gz
mmt-infra-9b45729da8a094f8c098216ddfabab53e566dfc5.zip
Remove .intHEADmain
Diffstat (limited to 'playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com')
-rw-r--r--playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com/http.auth.mistymountainstherapy.com.conf8
-rw-r--r--playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com/http.mail.mistymountainstherapy.com.conf8
-rw-r--r--playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com/https.auth.mistymountainstherapy.com.conf23
-rw-r--r--playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com/https.mail.mistymountainstherapy.com.conf21
4 files changed, 0 insertions, 60 deletions
diff --git a/playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com/http.auth.mistymountainstherapy.com.conf b/playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com/http.auth.mistymountainstherapy.com.conf
deleted file mode 100644
index 9a767f2..0000000
--- a/playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com/http.auth.mistymountainstherapy.com.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-server {
- listen 80;
- server_name auth.mistymountainstherapy.com;
-
- location / {
- rewrite ^ https://auth.mistymountainstherapy.com$request_uri? permanent;
- }
-}
diff --git a/playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com/http.mail.mistymountainstherapy.com.conf b/playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com/http.mail.mistymountainstherapy.com.conf
deleted file mode 100644
index 8f6d782..0000000
--- a/playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com/http.mail.mistymountainstherapy.com.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-server {
- listen 80;
- server_name mail.mistymountainstherapy.com;
-
- location / {
- rewrite ^ https://mail.mistymountainstherapy.com$request_uri? permanent;
- }
-}
diff --git a/playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com/https.auth.mistymountainstherapy.com.conf b/playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com/https.auth.mistymountainstherapy.com.conf
deleted file mode 100644
index fe39586..0000000
--- a/playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com/https.auth.mistymountainstherapy.com.conf
+++ /dev/null
@@ -1,23 +0,0 @@
-server {
- server_name auth.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/auth.mistymountainstherapy.com/fullchain.pem;
- ssl_certificate_key /etc/letsencrypt/live/auth.mistymountainstherapy.com/privkey.pem;
-
- location / {
- proxy_pass https://localhost:8443;
- proxy_redirect off;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_set_header X-Forwarded-Host $server_name;
- }
-}
diff --git a/playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com/https.mail.mistymountainstherapy.com.conf b/playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com/https.mail.mistymountainstherapy.com.conf
deleted file mode 100644
index 2a6a7bc..0000000
--- a/playbooks/roles/nginx/templates/mail.int.mistymountainstherapy.com/https.mail.mistymountainstherapy.com.conf
+++ /dev/null
@@ -1,21 +0,0 @@
-server {
- server_name mail.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/mail.mistymountainstherapy.com/fullchain.pem;
- ssl_certificate_key /etc/letsencrypt/live/mail.mistymountainstherapy.com/privkey.pem;
-
- location / {
- proxy_pass http://127.0.0.1:9002;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header Host $host;
- }
-}