configurations/Nginx/Server Blocks/gocrypt.libraryofcode.org.conf

17 lines
341 B
Plaintext
Raw Normal View History

2021-05-01 15:13:49 -04:00
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name gocrypt.libraryofcode.org;
ssl_certificate /etc/nginx/ssl/org.chain.crt;
ssl_certificate_key /etc/nginx/ssl/org.key.pem;
root /var/www/gocryptdoc;
index index.html;
2022-02-15 00:26:44 -05:00
2021-05-01 15:13:49 -04:00
location / {
try_files $uri $uri/index.html =404;
}
}