From d18625a4525a85af9042967daa522dc7d72983cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Artur=20Ku=C5=9B?= Date: Fri, 15 Aug 2025 00:56:58 +0200 Subject: [PATCH] driving.themself.eu port 3336 --- .../https/https-driving-themself-eu.conf | 26 ++++++++++++++----- 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/nginx-config/https/https-driving-themself-eu.conf b/nginx-config/https/https-driving-themself-eu.conf index 0d2cfa8..ecbd84f 100644 --- a/nginx-config/https/https-driving-themself-eu.conf +++ b/nginx-config/https/https-driving-themself-eu.conf @@ -1,16 +1,30 @@ server { listen 443 ssl; - server_name driving.themself.eu; - ssl_protocols TLSv1.2 TLSv1.3; - - ssl_ciphers HIGH:!aNULL:!MD5; + server_tokens off; ssl_certificate /letsencrypt/live/themself.eu/fullchain.pem; ssl_certificate_key /letsencrypt/live/themself.eu/privkey.pem; - return 301 https://kopama.themself.eu$request_uri; - + 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:3336; + + 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