Compare commits
2 commits
419cb46b9e
...
857a0d3075
Author | SHA1 | Date | |
---|---|---|---|
|
857a0d3075 | ||
99a1f7d5fa |
1 changed files with 10 additions and 1 deletions
|
@ -23,6 +23,12 @@
|
|||
# password and should be kept secret. This is normally the case and therefore
|
||||
# not a confidentiality issue, although it can be a availability concern if
|
||||
# malicious actors abuse the service.
|
||||
#
|
||||
# NOTE: the ntfy app defaults to the centralised ntfy.sh server. Element does
|
||||
# not seem to overwrite prior webhooks, but instead append new ones.
|
||||
# Therefore, if it manages to register before the ntfy app's server is
|
||||
# changed, Synapse will contact the ntfy.sh server forever. Check with:
|
||||
# > sudo -u matrix-synapse psql -c 'select * from pushers;'
|
||||
# https://unifiedpush.org/
|
||||
# https://f-droid.org/2022/12/18/unifiedpush.html
|
||||
# https://f-droid.org/en/packages/io.heckel.ntfy/
|
||||
|
@ -30,9 +36,12 @@
|
|||
enable = true;
|
||||
# https://docs.ntfy.sh/config/#config-options
|
||||
settings = {
|
||||
listen-http = "localhost:2586"; # NixOS default, for greppability
|
||||
base-url = "https://ntfy.caspervk.net";
|
||||
behind-proxy = true;
|
||||
# Disable default centralised https://ntfy.sh server
|
||||
# https://docs.ntfy.sh/config/#ios-instant-notifications
|
||||
upstream-base-url = "";
|
||||
# Disable web interface
|
||||
web-root = "disable";
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue