From 8dd1f0b2ec73e6e2bb7434100bf2bad79be7661a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Artur=20Ku=C5=9B?= Date: Wed, 13 Aug 2025 08:10:04 +0200 Subject: [PATCH] Adding kopama.themself.eu to domains now the same like driving.themself.eu --- .../https/https-kopama-themself-eu.conf | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 nginx-config/https/https-kopama-themself-eu.conf diff --git a/nginx-config/https/https-kopama-themself-eu.conf b/nginx-config/https/https-kopama-themself-eu.conf new file mode 100644 index 0000000..60ccaf5 --- /dev/null +++ b/nginx-config/https/https-kopama-themself-eu.conf @@ -0,0 +1,30 @@ +server { + + listen 443 ssl; + server_name kopama.themself.eu; + + server_tokens off; + + ssl_certificate /letsencrypt/live/themself.eu/fullchain.pem; + ssl_certificate_key /letsencrypt/live/themself.eu/privkey.pem; + + ssl_protocols TLSv1.2 TLSv1.3; + ssl_ciphers HIGH:!aNULL:!MD5; + + + location / { + + # Ograniczenie liczby żądań + limit_req zone=ip_limit burst=20 nodelay; + + proxy_pass http://arti24-container:3335; + + 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 $scheme; + proxy_set_header Host $host; + proxy_set_header X-Forwarded-Host $host; + proxy_set_header X-Forwarded-Port $server_port; + } + +} \ No newline at end of file