configurations/Nginx/Server Blocks/edu.libraryofcode.org.conf

19 lines
570 B
Plaintext
Raw Normal View History

2021-05-01 15:13:49 -04:00
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name edu.libraryofcode.org;
ssl_certificate /etc/nginx/ssl/org.chain.crt;
2021-06-01 01:13:44 -04:00
ssl_certificate_key /etc/nginx/ssl/org.key.pem;
2021-05-01 15:13:49 -04:00
2021-06-01 01:13:44 -04:00
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Frame-Options SAMEORIGIN;
2021-07-06 01:40:01 -04:00
proxy_pass http://localhost:6969;
2021-06-01 01:13:44 -04:00
proxy_read_timeout 90;
}
2021-05-01 15:13:49 -04:00
}