13 lines
275 B
Plaintext
13 lines
275 B
Plaintext
|
server {
|
||
|
listen 443 ssl http2;
|
||
|
listen [::]:443 ssl http2;
|
||
|
server_name s3.libraryofcode.org;
|
||
|
|
||
|
ssl_certificate /etc/nginx/ssl/org.chain.crt;
|
||
|
ssl_certificate_key /etc/nginx/ssl/org.key.pem;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://localhost:9000;
|
||
|
}
|
||
|
}
|