only ixvd
This commit is contained in:
parent
55953b67c3
commit
42ff844a1f
1 changed files with 11 additions and 2 deletions
|
@ -1,11 +1,20 @@
|
|||
server {
|
||||
listen 80;
|
||||
server_name "faulty.nl" "ixvd.net";
|
||||
server_name "ixvd.net";
|
||||
return 302 https://faulty.envs.net/;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 443 ssl http2;
|
||||
server_name "faulty.nl" "ixvd.net";
|
||||
server_name "ixvd.net";
|
||||
ssl_session_timeout 5m;
|
||||
ssl_session_cache shared:SSL:50m;
|
||||
ssl_session_tickets off;
|
||||
ssl_certificate /etc/nginx/certs/ixvd.net.crt;
|
||||
ssl_certificate_key /etc/nginx/certs/ixvd.net.key;
|
||||
ssl_dhparam /etc/nginx/certs/ixvd.net.dhparam.pem;
|
||||
ssl_trusted_certificate /etc/nginx/certs/ixvd.net.chain.pem;
|
||||
ssl_stapling on;
|
||||
ssl_stapling_verify on;
|
||||
return 302 https://faulty.envs.net/;
|
||||
}
|
Reference in a new issue