Blob Blame History Raw
server {
    listen                [::]:80;
    server_name           www.culturestrings.org;
    return                301 https://$server_name$request_uri;
}

server {
    listen                [::]:443;
    server_name           www.culturestrings.org;

    location /typography {
        root              /srv/www/htdocs/$host;
        fancyindex        on;
        ssi               on;
    }

    location / {
        root              /srv/www/htdocs/$host/;
        index             index.html index.htm;
        ssi               on;
    }

    ssl_certificate       /home/webroot/culturestrings.org/ssl/fullchain.pem;
    ssl_certificate_key   /home/webroot/culturestrings.org/ssl/privkey.pem;

    include conf.d/ssl_params;
}