From b0ff1df1386228d1b11ac29f1e7a37680ba24b96 Mon Sep 17 00:00:00 2001 From: FORCHA Date: Thu, 13 Jan 2022 22:07:32 +0100 Subject: [PATCH] Update monolith-sample.conf Changed IP to location of monolith server --- docs/nginx/monolith-sample.conf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/nginx/monolith-sample.conf b/docs/nginx/monolith-sample.conf index 1b5286cfa..360eb9255 100644 --- a/docs/nginx/monolith-sample.conf +++ b/docs/nginx/monolith-sample.conf @@ -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; } }