summaryrefslogtreecommitdiff
path: root/roles/private/files/raspberrypi/https.uptimeplugins.internal.simponic.xyz
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-12-15 06:21:45 -0500
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-12-15 06:21:45 -0500
commit321cd40fba0956e3aa697f9e7c7006159a032f58 (patch)
tree30b023da72d882fe234b288afb3b8495cbae7c39 /roles/private/files/raspberrypi/https.uptimeplugins.internal.simponic.xyz
parent2b18152e54a7a5aae866bb51a70fe7de23687cd7 (diff)
downloadoldinfra-321cd40fba0956e3aa697f9e7c7006159a032f58.tar.gz
oldinfra-321cd40fba0956e3aa697f9e7c7006159a032f58.zip
rename to .conf ._.
Diffstat (limited to 'roles/private/files/raspberrypi/https.uptimeplugins.internal.simponic.xyz')
-rw-r--r--roles/private/files/raspberrypi/https.uptimeplugins.internal.simponic.xyz32
1 files changed, 0 insertions, 32 deletions
diff --git a/roles/private/files/raspberrypi/https.uptimeplugins.internal.simponic.xyz b/roles/private/files/raspberrypi/https.uptimeplugins.internal.simponic.xyz
deleted file mode 100644
index 9e13968..0000000
--- a/roles/private/files/raspberrypi/https.uptimeplugins.internal.simponic.xyz
+++ /dev/null
@@ -1,32 +0,0 @@
-server {
- listen 443 ssl;
- server_name uptimeplugins.internal.simponic.xyz;
-
- ssl_certificate /etc/letsencrypt/live/uptimeplugins.internal.simponic.xyz/fullchain.pem;
- ssl_certificate_key /etc/letsencrypt/live/uptimeplugins.internal.simponic.xyz/privkey.pem;
- ssl_trusted_certificate /etc/letsencrypt/live/uptimeplugins.internal.simponic.xyz/fullchain.pem;
-
- ssl_session_cache shared:SSL:50m;
- ssl_session_timeout 5m;
- ssl_stapling on;
- ssl_stapling_verify on;
-
- ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
- ssl_ciphers "ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:DES-CBC3-SHA:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4";
-
- ssl_dhparam /etc/nginx/dhparams.pem;
- ssl_prefer_server_ciphers on;
-
- location / {
- proxy_pass http://127.0.0.1:9923;
- proxy_http_version 1.1;
- proxy_set_header Upgrade $http_upgrade;
- proxy_set_header Connection "upgrade";
- proxy_set_header Host $server_name;
- proxy_buffering 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-Proto $http_x_forwarded_proto;
- add_header Strict-Transport-Security "max-age=15552000; includeSubDomains" always;
- }
-}