2021-04-03 02:08:09 -04:00
|
|
|
server {
|
2021-04-03 02:37:14 -04:00
|
|
|
listen 443 ssl http2;
|
|
|
|
listen [::]:443 ssl http2;
|
|
|
|
server_name bin.libraryofcode.org;
|
2021-04-03 02:08:09 -04:00
|
|
|
|
2021-04-03 02:37:14 -04:00
|
|
|
ssl_certificate /etc/nginx/ssl/org.chain.crt;
|
|
|
|
ssl_certificate_key /etc/nginx/ssl/org.key.pem;
|
2021-04-03 02:08:09 -04:00
|
|
|
|
2021-04-03 02:37:14 -04:00
|
|
|
root /var/binary;
|
2022-02-15 00:26:44 -05:00
|
|
|
|
2021-04-03 02:37:14 -04:00
|
|
|
location / {
|
|
|
|
autoindex on;
|
|
|
|
}
|
2021-04-03 02:08:09 -04:00
|
|
|
}
|