Fix Nginx config

This commit is contained in:
decentral1se 2021-05-14 16:59:40 +02:00
parent c98abb2650
commit 67dfb8f7cf
No known key found for this signature in database
GPG Key ID: 92DAD76BD9567B8A
1 changed files with 12 additions and 9 deletions

View File

@ -10,6 +10,8 @@ http {
server {{ env "STACK_NAME" }}_front:8080;
}
server {
listen 80;
server_name {{ env "DOMAIN" }};
location / {
@ -22,4 +24,5 @@ http {
alias /opt/mailman/web/static/;
autoindex off;
}
}
}