blob: 1cd1362ff510bedd5ca4b24d8fa70856b7344f1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
server {
listen [::]:80;
server_name culturestrings.org;
return 301 https://$server_name$request_uri;
}
server {
listen [::]:443;
server_name 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 /srv/webroot/culturestrings.org/ssl/fullchain.pem;
ssl_certificate_key /srv/webroot/culturestrings.org/ssl/privkey.pem;
ssl_trusted_certificate /srv/webroot/culturestrings.org/ssl/chain.pem;
include conf.d/ssl_params;
}
|