mirror of
https://github.com/c0mmando/hackliberty-conf.git
synced 2025-01-07 13:48:04 -05:00
14 lines
401 B
Plaintext
14 lines
401 B
Plaintext
location /_matrix/maubot/v1/logs {
|
|
proxy_pass http://maubot:29316;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
}
|
|
|
|
location /_matrix/maubot {
|
|
proxy_pass http://maubot:29316;
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
}
|
|
|