Add certs
This commit is contained in:
parent
3e74e17aa3
commit
38bc3ceb35
@ -1,10 +1,28 @@
|
|||||||
server {
|
server {
|
||||||
listen 80;
|
|
||||||
listen [::]:80;
|
|
||||||
server_name culturalconnections.shoebottom.ca;
|
server_name culturalconnections.shoebottom.ca;
|
||||||
|
|
||||||
# CulturalConnections app page
|
# CulturalConnections app page
|
||||||
location /CulturalConnections {
|
location /CulturalConnections {
|
||||||
proxy_pass http://0.0.0.0:6789;
|
proxy_pass http://0.0.0.0:6789;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
listen [::]:443 ssl; # managed by Certbot
|
||||||
|
listen 443 ssl; # managed by Certbot
|
||||||
|
ssl_certificate /etc/letsencrypt/live/culturalconnections.shoebottom.ca/fullchain.pem; # managed by Certbot
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/culturalconnections.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 = culturalconnections.shoebottom.ca) {
|
||||||
|
return 301 https://$host$request_uri;
|
||||||
|
} # managed by Certbot
|
||||||
|
|
||||||
|
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
server_name culturalconnections.shoebottom.ca;
|
||||||
|
return 404; # managed by Certbot
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user