From 25d355fdc48e1630d7847d7238b1dd49f2e618a4 Mon Sep 17 00:00:00 2001 From: Dmitry Ilvokhin Date: Sat, 13 Jan 2024 17:38:13 +0000 Subject: Add role for ilvokhin.com --- roles/home/files/ilvokhin.com | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 roles/home/files/ilvokhin.com (limited to 'roles/home/files') diff --git a/roles/home/files/ilvokhin.com b/roles/home/files/ilvokhin.com new file mode 100644 index 0000000..f1fafbf --- /dev/null +++ b/roles/home/files/ilvokhin.com @@ -0,0 +1,33 @@ +server { + server_name ilvokhin.com www.ilvokhin.com; + + root /srv/http/ilvokhin.com; + index index.html; + + location / { + try_files $uri $uri/ = 404; + } + + listen [::]:443 ssl; + listen 443 ssl; + + ssl_certificate /etc/letsencrypt/live/ilvokhin.com/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/ilvokhin.com/privkey.pem; +} + +server { + if ($host = www.ilvokhin.com) { + return 301 https://$host$request_uri; + } + + if ($host = ilvokhin.com) { + return 301 https://$host$request_uri; + } + + server_name ilvokhin.com www.ilvokhin.com; + + listen 80; + listen [::]:80; + + return 404; +} -- cgit v1.2.3-70-g09d2