summaryrefslogtreecommitdiff
path: root/playbooks.d/webserver/share/sites.d/nl.tyil.headphones
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2022-04-18 08:53:56 +0200
committerPatrick Spek <p.spek@tyil.nl>2022-04-18 08:53:56 +0200
commitf64cadd81fbaebeb8496f3cd9053764fec06a64e (patch)
tree33a2c3bb7fb6c37da2b0266f7b7084dec5c4bcf0 /playbooks.d/webserver/share/sites.d/nl.tyil.headphones
parent342d8ef5e1d988877efbd1bc5d333640d7523570 (diff)
Various fixes to make the webserver playbook work
Diffstat (limited to 'playbooks.d/webserver/share/sites.d/nl.tyil.headphones')
-rw-r--r--playbooks.d/webserver/share/sites.d/nl.tyil.headphones35
1 files changed, 0 insertions, 35 deletions
diff --git a/playbooks.d/webserver/share/sites.d/nl.tyil.headphones b/playbooks.d/webserver/share/sites.d/nl.tyil.headphones
deleted file mode 100644
index 9f27f69..0000000
--- a/playbooks.d/webserver/share/sites.d/nl.tyil.headphones
+++ /dev/null
@@ -1,35 +0,0 @@
-#server {
-# listen 443 ssl; # managed by Certbot
-# listen [::]:443 ssl; # managed by Certbot
-#
-# server_name headphones.tyil.nl;
-#
-# ssl_certificate /etc/letsencrypt/live/headphones.tyil.nl/fullchain.pem;
-# ssl_certificate_key /etc/letsencrypt/live/headphones.tyil.nl/privkey.pem;
-#
-# include /etc/nginx/conf.d/ssl.conf;
-# include /etc/nginx/conf.d/certbot.conf;
-#
-# location / {
-# proxy_pass http://127.0.0.1:8181;
-# }
-#}
-
-server {
- listen 80;
- listen [::]:80;
-
- server_name headphones.tyil.nl;
-
- include /etc/nginx/conf.d/certbot.conf;
-
- access_log /var/log/nginx/nl.tyil.headphones-access.log;
- error_log /var/log/nginx/nl.tyil.headphones-error.log;
-
-# location / {
-# return 301 https://$host$request_uri;
-# }
- location / {
- proxy_pass http://localhost:8181;
- }
-}