2022-08-30 20:33:38 -04:00
|
|
|
server {
|
|
|
|
listen 443 ssl http2;
|
|
|
|
listen [::]:443 ssl http2;
|
|
|
|
server_name hr.libraryofcode.org;
|
|
|
|
|
|
|
|
ssl_certificate /etc/nginx/ssl/org.chain.crt;
|
|
|
|
ssl_certificate_key /etc/nginx/ssl/org.key.pem;
|
|
|
|
|
|
|
|
location / {
|
2022-08-30 21:04:24 -04:00
|
|
|
proxy_pass http://localhost:5487;
|
2022-08-30 20:33:38 -04:00
|
|
|
}
|
|
|
|
}
|