23 lines
580 B
Text
23 lines
580 B
Text
|
|
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://localhost:8008;
|
||
|
|
}
|
||
|
|
|
||
|
|
location / {
|
||
|
|
proxy_pass http://localhost:5000;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|