simple redirect for plecianki.pl
This commit is contained in:
parent
94b0e3904b
commit
84b967d151
|
|
@ -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;
|
||||
}
|
||||
|
|
@ -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/;
|
||||
}
|
||||
Loading…
Reference in New Issue