forked from exozyme/nginx
19 lines
420 B
Text
19 lines
420 B
Text
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
server_name ta180m.exozy.me;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/exozy.me/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/exozy.me/privkey.pem;
|
|
|
|
root /srv/http/ta180m;
|
|
index index.html;
|
|
|
|
location /blog {
|
|
alias /srv/http/ta180m/blog/_site;
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|