Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: tweaks install instructions re: port #573

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ ever stuck, you can post a question in the
1. Create a new Matrix room to act as the administration control room. Note its
internal room ID (Example: !abcdefg12345hijk:coolserver.com).

1. Decide on a spare local TCP port number to use. It will listen for messages
1. Decide on a spare local TCP port number to use. The Default is 5858. It will listen for messages
jaller94 marked this conversation as resolved.
Show resolved Hide resolved
from Matrix and needs to be visible to the homeserver. Take care to configure
firewalls appropriately. This port will be notated as `$MATRIX_PORT` in
the remaining instructions.
Expand All @@ -66,9 +66,11 @@ ever stuck, you can post a question in the

1. For `matrix_admin_room`, enter the internal room ID of the administration control
room (Example: !abcdefg12345hijk:coolserver.com).

1. For `homeserver.appservice_port`, specify the above $MATRIX_PORT if you would like to override
jaller94 marked this conversation as resolved.
Show resolved Hide resolved

1. Generate the appservice registration file. This will be used by the
Matrix homeserver. Here, you must specify the direct link the
Matrix homeserver. Here, you must specify the direct link (the field url) the
jaller94 marked this conversation as resolved.
Show resolved Hide resolved
**Matrix Homserver** can use to access the bridge, including the Matrix
port it will send messages through (if this bridge runs on the same
machine you can use `localhost` as the `$HOST` name):
Expand All @@ -78,7 +80,7 @@ ever stuck, you can post a question in the

```sh
$ docker run -v /path/to/config/:/config/ matrixdotorg/matrix-appservice-slack \
-r -c /config/config.yaml -u "http://$HOST:$MATRIX_PORT" -f /config/slack.yaml
-r -c /config/config.yaml -u "http://$HOST:$MATRIX_PORT" -f /config/slack-registration.yaml
```

1. Start the actual application service:
Expand Down