diff --git a/custom/proxy/config/conf.d/temp-frontend.conf b/custom/proxy/config/conf.d/temp-frontend.conf index 52686ea..abc4b49 100644 --- a/custom/proxy/config/conf.d/temp-frontend.conf +++ b/custom/proxy/config/conf.d/temp-frontend.conf @@ -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/; } \ No newline at end of file