Skip to content
This repository was archived by the owner on Nov 25, 2024. It is now read-only.

Commit 7bbec19

Browse files
authored
cosmetics nginx sample config (#3385)
- fix typo - fix spaces - full sentence Not tests required since no functional change happens ### Pull Request Checklist <!-- Please read https://matrix-org.github.io/dendrite/development/contributing before submitting your pull request --> * [x] I have added Go unit tests or [Complement integration tests](https://github.com/matrix-org/complement) for this PR _or_ I have justified why this PR doesn't need tests * [x] Pull request includes a [sign off below using a legally identifiable name](https://matrix-org.github.io/dendrite/development/contributing#sign-off) _or_ I have already signed off privately Signed-off-by: `Werner <[email protected]>` [skip CI]
1 parent 7a4ef24 commit 7bbec19

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docs/nginx/dendrite-sample.conf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#change IP to location of monolith server
2-
upstream monolith{
1+
# change IP to location of monolith server
2+
upstream monolith {
33
server 127.0.0.1:8008;
44
}
55
server {
@@ -20,8 +20,9 @@ server {
2020
}
2121

2222
location /.well-known/matrix/client {
23-
# If your sever_name here doesn't match your matrix homeserver URL
23+
# If your server_name here doesn't match your matrix homeserver URL
2424
# (e.g. hostname.com as server_name and matrix.hostname.com as homeserver URL)
25+
# uncomment the following line.
2526
# add_header Access-Control-Allow-Origin '*';
2627
return 200 '{ "m.homeserver": { "base_url": "https://my.hostname.com" } }';
2728
}

0 commit comments

Comments
 (0)