blob: bf2edabb47f4efe3c89b8df99bb3869294db9d6e (
plain) (
blame)
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
29
30
|
# vim: ft=nginx
server {
listen 80;
listen [::]:80;
server_name starfall.systems www.starfall.systems;
location ^~ /.well-known/acme-challenge {
alias /var/lib/dehydrated/acme_challenges/;
}
return 301 https://$host$request_uri;
}
server {
server_name www.starfall.systems;
include /etc/nginx/snippets/ssl.conf;
return 302 https://starfall.systems$request_uri;
}
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name starfall.systems;
include /etc/nginx/snippets/ssl.conf;
root /srv/starfall.systems/html;
try_files $uri $uri/index.html $uri.html =404;
location ~ ^/(css/img/js/files)/ {
root /srv/starfall.systems;
}
}
|