Update to proxy_pass

Changed proxy_pass to the mattermost server rather than pointing at the nginx server(localhost)
This commit is contained in:
Jason
2015-11-06 07:10:15 -05:00
parent de5e97167d
commit 335e9ece6b

View File

@@ -103,7 +103,7 @@ exec bin/platform
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Frame-Options SAMEORIGIN;
proxy_pass http://localhost:8065;
proxy_pass http://10.10.10.2:8065;
}
}
```