nginx/ta180m.conf

20 lines
420 B
Text
Raw Normal View History

2021-05-22 19:54:16 +00:00
server {
2021-06-17 03:28:04 +00:00
listen 443 ssl http2;
listen [::]:443 ssl http2;
2021-05-25 03:24:31 +00:00
server_name ta180m.exozy.me;
2021-05-22 19:54:16 +00:00
2021-05-25 03:24:31 +00:00
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;
2021-07-14 23:27:01 +00:00
location /blog {
alias /srv/http/ta180m/blog/_site;
}
2021-05-25 03:24:31 +00:00
location / {
try_files $uri $uri/ =404;
}
2021-05-22 19:54:16 +00:00
}