sites-available/doi.ionathan.ch

25 lines
756 B
Plaintext
Raw Permalink Normal View History

2020-12-29 07:48:22 +00:00
server {
root /srv/www/doi.ionathan.ch;
server_name doi.ionathan.ch;
error_page 404 /index.html;
location ~/.* {
try_files $uri $uri/ =404;
}
listen 443 ssl; # managed by Certbot
2020-12-29 08:11:34 +00:00
ssl_certificate /etc/letsencrypt/live/git.ionathan.ch/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/git.ionathan.ch/privkey.pem; # managed by Certbot
2020-12-29 07:48:22 +00:00
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
2020-12-29 08:11:34 +00:00
2020-12-29 07:48:22 +00:00
server {
if ($host = doi.ionathan.ch) {
return 301 https://$host$request_uri;
} # managed by Certbot
server_name doi.ionathan.ch;
2020-12-29 08:11:34 +00:00
listen 80;
2020-12-29 07:48:22 +00:00
return 404; # managed by Certbot
2020-12-29 08:11:34 +00:00
}