churn/ansible/templates/nginx-config.j2

24 lines
621 B
Text
Raw Permalink Normal View History

server {
listen 80 default_server;
listen [::]:80 default_server;
server_name {{ butter_name }}.local;
2026-04-08 10:30:22 +01:00
client_max_body_size 150M;
location ^~ /chat {
alias /var/www/html/chat;
}
location ^~ /raspap {
2026-04-01 11:17:21 +01:00
proxy_pass http://127.0.0.1:8080;
}
location ^~ /_matrix {
proxy_pass http://127.0.0.1:8008;
}
location / {
proxy_pass http://127.0.0.1:5000;
}
}