17 lines
351 B
Plaintext
Executable File
17 lines
351 B
Plaintext
Executable File
server {
|
|
|
|
listen 443 ssl;
|
|
|
|
server_name www.themself.eu themself.eu;
|
|
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
|
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
|
|
|
ssl_certificate /letsencrypt/live/themself.eu/fullchain.pem;
|
|
ssl_certificate_key /letsencrypt/live/themself.eu/privkey.pem;
|
|
|
|
return 301 https://massage.themself.eu$request_uri;
|
|
|
|
}
|