simple redirect for plecianki.pl

This commit is contained in:
Artur Kuś 2025-09-11 22:58:27 +02:00
parent 94b0e3904b
commit 84b967d151
12 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,16 @@
# Redirect z HTTPS na nową domenę kopama.com.pl
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;
# Permanent redirect z zachowaniem ścieżki
return 301 https://kopama.com.pl$request_uri;
}

View File

@ -0,0 +1,16 @@
# Redirect z HTTPS na nową domenę kopama.com.pl
server {
listen 443 ssl;
server_name plecianki.pl;
server_tokens off;
ssl_certificate /letsencrypt/live/plecianki.pl/fullchain.pem;
ssl_certificate_key /letsencrypt/live/plecianki.pl/privkey.pem;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers HIGH:!aNULL:!MD5;
# Permanent redirect z zachowaniem ścieżki
return 301 https://www.facebook.com/PleciAnkiAlpakarnia/;
}