This repository has been archived on 2023-05-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neo/custom/proxy/config/conf.d/temp-frontend.conf
2023-02-15 14:09:18 +01:00

20 lines
No EOL
571 B
Text

server {
listen 80;
server_name "ixvd.net";
return 302 https://faulty.envs.net/;
}
server {
listen 443 ssl http2;
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/;
}