Add blog
This commit is contained in:
parent
fcdb22a413
commit
be5c3aad1b
26
blog.conf
Normal file
26
blog.conf
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
server {
|
||||||
|
root /home/isaac/www/blog.shoebottom.ca/public;
|
||||||
|
index index.html;
|
||||||
|
server_name blog.shoebottom.ca;
|
||||||
|
|
||||||
|
listen [::]:443 ssl; # managed by Certbot
|
||||||
|
listen 443 ssl; # managed by Certbot
|
||||||
|
ssl_certificate /etc/letsencrypt/live/blog.shoebottom.ca/fullchain.pem; # managed by Certbot
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/blog.shoebottom.ca/privkey.pem; # managed by Certbot
|
||||||
|
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
||||||
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
||||||
|
|
||||||
|
}
|
||||||
|
server {
|
||||||
|
if ($host = blog.shoebottom.ca) {
|
||||||
|
return 301 https://$host$request_uri;
|
||||||
|
} # managed by Certbot
|
||||||
|
|
||||||
|
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
server_name blog.shoebottom.ca;
|
||||||
|
return 404; # managed by Certbot
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user