infra/playbooks/roles/nginx/templates/himmel.int.infra.hatecomput.../https.ci.hatecomputers.club...

22 lines
800 B
Plaintext
Raw Permalink Normal View History

2024-03-23 17:43:50 -04:00
server {
2024-03-25 01:19:53 -04:00
server_name ci.hatecomputers.club;
2024-03-23 17:43:50 -04:00
listen 443 ssl;
ssl_dhparam /etc/nginx/dhparams.pem;
ssl_session_timeout 1d;
ssl_session_tickets off;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-CHACHA20-POLY1305;
ssl_prefer_server_ciphers off;
2024-03-25 01:19:53 -04:00
ssl_certificate /etc/letsencrypt/live/ci.hatecomputers.club/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/ci.hatecomputers.club/privkey.pem;
2024-03-23 17:43:50 -04:00
location / {
2024-03-25 01:19:53 -04:00
proxy_pass http://127.0.0.1:2201;
2024-03-23 17:43:50 -04:00
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
}
}