Update monolith-sample.conf

Changed IP to location of monolith server
This commit is contained in:
FORCHA 2022-01-13 22:07:32 +01:00 committed by GitHub
parent 436a64d610
commit b0ff1df138
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,7 @@
#change IP to location of monolith server
upstream monolith{
server 127.0.0.1:8008;
}
server {
listen 443 ssl; # IPv4
listen [::]:443 ssl; # IPv6
@ -23,6 +27,6 @@ server {
}
location /_matrix {
proxy_pass http://my.hostname.com:8008;
proxy_pass http://monolith;
}
}