mirror of
https://github.com/bsedin/matrix-webhook.git
synced 2026-04-09 11:25:40 +00:00
Add HOST to PORT configuration, and document both
Co-authored-by: Sven Seeberg <mail@sven-seeberg.de>
This commit is contained in:
@@ -11,6 +11,8 @@ environment variables:
|
|||||||
- `MATRIX_ID`: the user id of the bot on this server
|
- `MATRIX_ID`: the user id of the bot on this server
|
||||||
- `MATRIX_PW`: the password for this user
|
- `MATRIX_PW`: the password for this user
|
||||||
- `API_KEY`: a secret to share with the users of the service
|
- `API_KEY`: a secret to share with the users of the service
|
||||||
|
- `HOST`: HOST to listen on, all interfaces if `''` (default).
|
||||||
|
- `PORT`: PORT to listed on, default to 4785.
|
||||||
|
|
||||||
## Dev
|
## Dev
|
||||||
|
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ from markdown import markdown
|
|||||||
from nio import AsyncClient
|
from nio import AsyncClient
|
||||||
from nio.exceptions import LocalProtocolError
|
from nio.exceptions import LocalProtocolError
|
||||||
|
|
||||||
SERVER_ADDRESS = ('', int(os.environ.get('PORT', 4785)))
|
SERVER_ADDRESS = (os.environ.get('INTERFACE', None), int(os.environ.get('PORT', 4785)))
|
||||||
MATRIX_URL = os.environ.get('MATRIX_URL', 'https://matrix.org')
|
MATRIX_URL = os.environ.get('MATRIX_URL', 'https://matrix.org')
|
||||||
MATRIX_ID = os.environ.get('MATRIX_ID', '@wwm:matrix.org')
|
MATRIX_ID = os.environ.get('MATRIX_ID', '@wwm:matrix.org')
|
||||||
MATRIX_PW = os.environ['MATRIX_PW']
|
MATRIX_PW = os.environ['MATRIX_PW']
|
||||||
|
|||||||
Reference in New Issue
Block a user