16 lines
341 B
Plaintext
16 lines
341 B
Plaintext
server {
|
|
|
|
listen 443 ssl;
|
|
|
|
server_name driving.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://kopama.themself.eu$request_uri;
|
|
|
|
} |