server { listen 80 default_server; listen [::]:80 default_server; server_name {{ butter_name }}.local; client_max_body_size 150M; location ^~ /chat { alias /var/www/html/chat; } location ^~ /raspap { 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; } }