Slavi Pantaleev
e443b376b9
Improve "things to do after installation" docs section
пре 5 година
Slavi Pantaleev
26542308b3
Use |to_json in more places in matrix-appservice-discord config
I don't think this was causing an issue, but it might
if the bot token has a more special value in the future.
Related to https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/828
пре 5 година
Slavi Pantaleev
d9bf2f59db
Fix adminme.js usage for matrix-appservice-discord (still hacky)
Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/795
and https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/822
A better fix will come later: https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/825
пре 5 година
Slavi Pantaleev
dd24942c03
Use |to_json for mautrix-telegram config
Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/824
пре 5 година
Slavi Pantaleev
6fc214480c
Fix Signal role using incorrect database string variable
Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/823
пре 5 година
Slavi Pantaleev
8fa913dca7
Fix Ansible warning
пре 5 година
Slavi Pantaleev
42f60142c0
Merge pull request #819 from jolly-jump/patch-1
small fix to CHANGELOG.md
пре 5 година
T. Küchel
67fab21d7e
Update CHANGELOG.md
propose explicit showing single quotes around the password, since I forgot to put them there.
пре 5 година
Slavi Pantaleev
9b5daf54f0
Fix wording a bit
пре 5 година
Slavi Pantaleev
07c7afb861
Make README more tidy
пре 5 година
Slavi Pantaleev
a56cb34850
Notify people if /matrix/postgres/data-auto-upgrade-backup exists
пре 5 година
Slavi Pantaleev
a2422c458a
Notify of remaining matrix-postgres local data in a better way
пре 5 година
Slavi Pantaleev
1cd251ed78
Don't delete Docker images which may have been pulled by another
Some people run Coturn or Jitsi, etc., by themselves and disable it
in the playbook.
Because the playbook is trying to be nice and clean up after itself,
it was deleting these Docker images.
However, people wish to pull and use them separately and would rather
they don't get deleted.
We could make this configurable for the sake of this special case, but
it's simpler to just avoid deleting these images.
It's not like this "cleaning things up" thing works anyway.
As time goes on, the playbook gets updated with newer image tags
and we leave so many images behind. If one doesn't run
`docker system prune -a` manually once in a while, they'd get swamped
with images anyway. Whether we leave a few images behind due to the lack
of this cleanup now is pretty much irrelevant.
пре 5 година
Slavi Pantaleev
f085362149
Fix some Postgres CLI scripts to target the correct database
Fixes a regression introduced in 95346f3117 .
Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/814
Using `matrix_synapse_` variables in the `matrix-postgres` role is not
ideal, but.. this script belongs neither here, nor there.
We'll have it be like that for now.
пре 5 година
Slavi Pantaleev
acf7866442
Fix step number
пре 5 година
Slavi Pantaleev
ec9fda4cd7
Merge pull request #812 from prapooskur/master
Fixed typo
пре 5 година
Prasiddh Pooskur
b61c8a7e72
fixed typo
пре 5 година
Slavi Pantaleev
c2e970ee61
Merge pull request #810 from drpaneas/irc
Selfbuild appservice-irc bridge
пре 5 година
Slavi Pantaleev
3051655d21
Ensure matrix_appservice_irc_docker_src_files_path created when self-building
The git module will create it anyway, but that would likely use `root:root`.
пре 5 година
Panagiotis Georgiadis
f10e3fef0d
Merge branch 'master' into irc
пре 5 година
Panagiotis Georgiadis
e502ee33da
Selfbuild appservice-irc bridge
пре 5 година
Slavi Pantaleev
0f64f4dc4b
Stop using + to mean "or newer"
пре 5 година
Slavi Pantaleev
f9968b6981
Fix matrix_postgres_connection_password length check
пре 5 година
Slavi Pantaleev
3647b23628
Add some warning about ; in SQL statements (take 2)
пре 5 година
Slavi Pantaleev
49c0e254db
Add some warning about ; in SQL statements
I got at least a few reports of people pasting these statements one by
one and missing the `;`.
пре 5 година
Slavi Pantaleev
2997a7fc3e
Make mx-puppet-* bridges not log to files
We log everything in systemd/journald for every service already,
so there's no need for double-logging, bridges rotating log files
manually and other such nonsense.
пре 5 година
Slavi Pantaleev
f3dd346724
Try to tighten Signal bridge security
пре 5 година
Slavi Pantaleev
8ec975e3c8
Use matrix:matrix for Signal bridge (not root)
пре 5 година
Slavi Pantaleev
37909aa7a9
Create signald/{avatars,attachments,data} and rename config dir
пре 5 година
Slavi Pantaleev
88addd71fc
Fix Postgres imports going to the matrix DB by default
Well, they still do go to that DB by default,
but our docs give a better command to users, which would do the right
thing.
пре 5 година
Slavi Pantaleev
bef0702fea
Wait some more when starting Postgres during setup on ARM
пре 5 година
Slavi Pantaleev
3273f023dc
Fix Postgres importing guide
This fixes things to make them compatible
with the changes done in 95346f3117
пре 5 година
Slavi Pantaleev
9011b166eb
Merge pull request #807 from thedanbob/fix-changelog
Fix typos
пре 5 година
Dan Arnfield
d95f160705
Fix typos
пре 5 година
Slavi Pantaleev
89db6be568
Fix typo
пре 5 година
Slavi Pantaleev
1a3034b0c8
Fix typo
пре 5 година
Slavi Pantaleev
d3aea8f4b8
Update Postgres backup docs for ARM32
пре 5 година
Slavi Pantaleev
e88dcfa252
Mention Postgres backup
пре 5 година
Slavi Pantaleev
f9c1d62435
Fix Postgres database (-alpine) failing to start on ARM32
пре 5 година
Slavi Pantaleev
95346f3117
Reorganize Postgres access (breaking change)
In short, this makes Synapse a 2nd class citizen,
preparing for a future where it's just one-of-many homeserver software
options.
We also no longer have a default Postgres superuser password,
which improves security.
The changelog explains more as to why this was done
and how to proceed from here.
пре 5 година
Slavi Pantaleev
703f1b1a04
Add some more questions/answers to the FAQ
пре 5 година
Slavi Pantaleev
a47813585d
Rename file to prevent common mistake
Prompted by this: https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/779#issuecomment-764807507
пре 5 година
Slavi Pantaleev
3b5907d83d
Update FAQ with details about /matrix/postgres/data-auto-upgrade-backup
пре 5 година
Slavi Pantaleev
fb28f59f8c
Initial work on a FAQ document
пре 5 година
Slavi Pantaleev
068f9d5763
Merge pull request #803 from throwawayay/patch-1
Update element-web (1.7.16 -> 1.7.17)
пре 5 година
throwawayay
a30ef0cc29
Update element-web (1.7.16 -> 1.7.17)
пре 5 година
Slavi Pantaleev
f6861e3c65
Improve wording a bit
пре 5 година
Slavi Pantaleev
024a23ed17
Upgrade mautrix-facebook to the new Postgres-only version
I had intentionally held it back in 39ea3496a4
until:
- it received more testing (there were a few bugs during the
migration, but now it seems OK)
- this migration guide was written
пре 5 година
Slavi Pantaleev
9be9f43be7
Merge pull request #801 from pushytoxin/patch-1
When validating LE certs, do not wait for a random time
пре 5 година
pushytoxin
d51ea25219
When validating LE certs, do not wait for a random time
While administering we will occasionally invoke this script interactively with the "non-interactive" switch still there, yet still sit at the desk waiting for 300 seconds for this timer to run out.
The systemd-timer already uses a 3h randomized delay for automatic renewals, which serves this purpose well.
пре 5 година