server { listen 80 default_server; listen [::]:80 default_server; server_name {{ butter_name }}.local; location ^~ /chat { alias /var/www/html/chat; } location ^~ /raspap { alias /var/www/html/raspap; } location ^~ /_matrix { proxy_pass http://127.0.0.1:8008; } location / { proxy_pass http://127.0.0.1:5000; } }