28 lines
872 B
Plaintext
28 lines
872 B
Plaintext
server {
|
|
server_name culturalconnections.shoebottom.ca;
|
|
|
|
# CulturalConnections app page
|
|
location / {
|
|
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
|
|
|
|
|
|
} |