diff options
author | 2024-07-30 18:09:20 +0200 | |
---|---|---|
committer | 2024-07-30 18:09:20 +0200 | |
commit | 0a17cfaa12a1527588b3a141ea6f7c674f6a98c8 (patch) | |
tree | ff55196183303b5bf1428fee22df24f7a3a1b0c3 | |
parent | Remove hugo-book submodule (diff) |
Fix typo in NGINX configuration
-rw-r--r-- | ansible/host_vars/lovelace/nginx.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ansible/host_vars/lovelace/nginx.yml b/ansible/host_vars/lovelace/nginx.yml index 3c76955..8b10865 100644 --- a/ansible/host_vars/lovelace/nginx.yml +++ b/ansible/host_vars/lovelace/nginx.yml @@ -38,3 +38,13 @@ nginx_configs: try_files $uri $uri/ =404; } } + + propaganda.pydis.wtf.conf: | + server { + listen 443; + server_name propaganda.pydis.wtf; + root /var/www/propaganda.pydis.wtf; + + ssl_certificate /etc/letsencrypt/live/pydis.wtf/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/pydis.wtf/privkey.pem; + } |