21 lines
425 B
Plaintext
21 lines
425 B
Plaintext
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
server_name content.libraryofcode.org;
|
|
|
|
ssl_certificate /etc/nginx/ssl/org.chain.crt;
|
|
ssl_certificate_key /etc/nginx/ssl/org.key.pem;
|
|
|
|
root /var/www/content;
|
|
|
|
location / {
|
|
autoindex on;
|
|
}
|
|
|
|
location /sec {
|
|
autoindex on;
|
|
auth_basic "Secure Area";
|
|
auth_basic_user_file /etc/nginx/htpasswd;
|
|
}
|
|
}
|