You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
584 B
23 lines
584 B
5 years ago
|
server {
|
||
|
|
||
|
server_name irregular-apocalypse.kejadlen.dev;
|
||
|
|
||
|
# Redirect non-https traffic to https
|
||
|
if ($scheme != "https") {
|
||
|
return 301 https://$host$request_uri;
|
||
|
}
|
||
|
|
||
|
location /dev {
|
||
|
proxy_pass http://localhost:3000/;
|
||
|
}
|
||
|
|
||
|
listen 80;
|
||
|
|
||
|
listen 443 ssl;
|
||
|
ssl_certificate /etc/letsencrypt/live/irregular-apocalypse.kejadlen.dev/fullchain.pem;
|
||
|
ssl_certificate_key /etc/letsencrypt/live/irregular-apocalypse.kejadlen.dev/privkey.pem;
|
||
|
include /etc/letsencrypt/options-ssl-nginx.conf;
|
||
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
|
||
|
|
||
|
}
|