You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
288 B
Plaintext

2 years ago
server {
listen 80;
listen [::]:80;
server_name {{ domain }};
#root /var/www/{{ domain }};
location / {
# try_files $uri $uri/ =404;
proxy_pass http://localhost:5000;
}
# location /.well-known/acme-challenge/ {
#  root /var/www/{{ domain }};
# }
}