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

Maubot moanos #1894

Merged
merged 54 commits into from
Jul 20, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
f57aed8
Add a setting to make nginx forward node_exporter and postgres_exporter
moan0s Jun 20, 2022
d24cb7d
Initial maubot commit
moan0s Jun 23, 2022
eb25d54
Merge branch 'master' of https://github.com/spantaleev/matrix-docker-…
moan0s Jun 23, 2022
1316656
Rename to bot_maubot and fix permission error
moan0s Jun 23, 2022
4d40b61
Fix config error, add nginx
moan0s Jun 24, 2022
d7eb2d0
Fix yamllint (emptylines)
moan0s Jun 24, 2022
8806598
Add option to proxy management UI (now defaults to false)
moan0s Jun 24, 2022
0ea1469
Make exposing management UI configurable
moan0s Jun 24, 2022
2f1d78f
Make true and false lowercase
moan0s Jun 24, 2022
2309a61
Fix minor naming issue
moan0s Jun 24, 2022
d5c82a5
Remove logging to /var/log and make readonly
moan0s Jun 24, 2022
6ed105b
Rename service from matrix-maubot to matrix-bot-maubot
moan0s Jun 24, 2022
ba0caf3
Create dckr-src file path only when neccessary
moan0s Jun 24, 2022
6d1650c
Remove config dir
moan0s Jun 24, 2022
2f167f2
Rename docker container to matrix-bot-maubot
moan0s Jun 24, 2022
2e2e504
Merge branch 'maubot_moanos' of https://github.com/moan0s/matrix-dock…
moan0s Jun 24, 2022
8e9d165
Another rename to matrix-bot-maubot
moan0s Jun 24, 2022
a289116
Use tagged release
moan0s Jun 24, 2022
90447a2
Use correct registration secret
moan0s Jun 24, 2022
7baf477
Remove unnecessary variable
moan0s Jun 24, 2022
64fbc5f
Replace spaces with tabs
moan0s Jun 25, 2022
a295ec3
Change to matrix_bot_maubot_bot_server_public
moan0s Jun 25, 2022
2e5ad5c
Remove unused variable
moan0s Jun 25, 2022
9ed7018
Use safer |to_json
moan0s Jun 25, 2022
9d06ece
Merge branch 'master' of https://github.com/spantaleev/matrix-docker-…
moan0s Jun 28, 2022
6cc9285
enable setting database URL
Cadair Jun 29, 2022
320978c
Enable setting database URI and other things
Cadair Jun 29, 2022
be54af1
Merge pull request #1 from Cadair/maubot_moanos
moan0s Jul 9, 2022
ab94cb2
Merge branch 'maubot_moanos' of https://github.com/moan0s/matrix-dock…
moan0s Jul 9, 2022
59806ec
Fix typo in variable name
moan0s Jul 9, 2022
07cfd3b
Use custom invocation instead of provided script
moan0s Jul 9, 2022
4ab516f
Fix linter
moan0s Jul 9, 2022
9ee5785
Add postgres to service dependencies
moan0s Jul 9, 2022
135096e
Add defaults
moan0s Jul 9, 2022
a842e9c
Fix uninstall (did not remove service)
moan0s Jul 9, 2022
bcd7ec7
Add postgres configuration
moan0s Jul 9, 2022
05c1333
Restrict permissions of container
moan0s Jul 9, 2022
f64c132
Make database switchable
moan0s Jul 10, 2022
27b1835
Fix uninstall (for real this time)
moan0s Jul 10, 2022
2e15bd8
Rename with addition "unshared"
moan0s Jul 10, 2022
07fdb09
Rename with addition "url"
moan0s Jul 10, 2022
e62632b
Change from spaces to tabs
moan0s Jul 10, 2022
ffa2035
Use http_bin_port and make networking clearer
moan0s Jul 10, 2022
acf53f6
Fix homserver configuration url
moan0s Jul 10, 2022
29b336f
Add docs
moan0s Jul 11, 2022
1ffc0d9
Add maubot configuration docs
moan0s Jul 11, 2022
6b7191c
Fix tabs issue for real
moan0s Jul 11, 2022
d6d311e
Fix plugin database issue
moan0s Jul 20, 2022
73ebbdc
Move maubot nginx config
moan0s Jul 20, 2022
d2e6ab6
Fix some CI lint errors
moan0s Jul 20, 2022
f8a8870
Use FQCN
moan0s Jul 20, 2022
04a817a
Use explicit version for self build
moan0s Jul 20, 2022
f2dcbe5
Name all tasks
moan0s Jul 20, 2022
e306d00
Add project introduction to maubot's defaults file
spantaleev Jul 20, 2022
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
1 change: 0 additions & 1 deletion roles/matrix-bot-maubot/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ matrix_bot_maubot_proxy_management_interface: false
matrix_bot_maubot_expose_management_interface: true


matrix_bot_maubot_logging_level: info
matrix_bot_maubot_secret: ''
matrix_bot_maubot_admin_user: ''
matrix_bot_maubot_admin_password: ''
Expand Down
2 changes: 1 addition & 1 deletion roles/matrix-bot-maubot/templates/config/config.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ server:
appservice_base_path: /_matrix/app/v1
# The shared secret to sign API access tokens.
# Set to "generate" to generate and save a new token at startup.
unshared_secret: {{ matrix_bot_maubot_secret }}
unshared_secret: {{ matrix_bot_maubot_secret|to_json }}
moan0s marked this conversation as resolved.
Show resolved Hide resolved

# Known homeservers. This is required for the `mbc auth` command and also allows
# more convenient access from the management UI. This is not required to create
Expand Down