2024-08-15 11:45:03 -04:00
|
|
|
server {
|
|
|
|
listen 443 ssl http2;
|
|
|
|
listen [::]:443 ssl http2;
|
2024-08-15 11:54:48 -04:00
|
|
|
server_name cshd.libraryofcode.org;
|
2024-08-15 11:45:03 -04:00
|
|
|
|
|
|
|
ssl_certificate /etc/nginx/ssl/org.chain.crt;
|
|
|
|
ssl_certificate_key /etc/nginx/ssl/org.key.pem;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
proxy_pass http://localhost:5479;
|
|
|
|
}
|
|
|
|
}
|