28 lines
801 B
YAML
28 lines
801 B
YAML
|
# registration.yaml
|
||
|
|
||
|
# An ID which is unique across all application services on your homeserver. This should never be changed once set.
|
||
|
id: "minecraft_bridge"
|
||
|
|
||
|
# this is the base URL of the application service
|
||
|
url: "http://localhost:5000"
|
||
|
|
||
|
# This is the token that the AS should use as its access_token when using the Client-Server API
|
||
|
# This can be anything you want.
|
||
|
as_token: #sometoken
|
||
|
|
||
|
# This is the token that the HS will use when sending requests to the AS.
|
||
|
# This can be anything you want.
|
||
|
hs_token: #sometoken
|
||
|
|
||
|
# this is the local part of the desired user ID for this AS (in this case @logging:localhost)
|
||
|
sender_localpart: mcbridge
|
||
|
namespaces:
|
||
|
users:
|
||
|
- exclusive: true
|
||
|
regex: '@mc_.*'
|
||
|
rooms: []
|
||
|
aliases:
|
||
|
- exclusive: false
|
||
|
regex: '#mcbridge_.*'
|
||
|
rate_limited: false
|