2022-09-19 18:53:02 -04:00
|
|
|
server {
|
|
|
|
listen 443 ssl http2;
|
|
|
|
listen [::]:443 ssl http2;
|
|
|
|
server_name book.libraryofcode.org;
|
|
|
|
|
|
|
|
ssl_certificate /etc/nginx/ssl/org.chain.crt;
|
|
|
|
ssl_certificate_key /etc/nginx/ssl/org.key.pem;
|
|
|
|
|
2024-10-07 20:26:55 -04:00
|
|
|
location / {
|
|
|
|
proxy_pass http://localhost:3000;
|
2022-09-19 18:53:02 -04:00
|
|
|
}
|
|
|
|
}
|