2021-10-24 03:29:45 +02:00
|
|
|
# ntfy config file
|
|
|
|
|
|
|
|
# Listen address for the HTTP web server
|
2021-10-29 20:03:41 +02:00
|
|
|
# Format: <hostname>:<port>
|
2021-10-24 03:29:45 +02:00
|
|
|
#
|
|
|
|
# listen-http: ":80"
|
2021-10-29 20:03:41 +02:00
|
|
|
|
2021-12-02 14:52:48 +01:00
|
|
|
# Listen address for the HTTPS web server. If set, you must also set "key-file" and "cert-file".
|
|
|
|
# Format: <hostname>:<port>
|
|
|
|
#
|
|
|
|
# listen-https:
|
|
|
|
|
|
|
|
# Path to the private key file for the HTTPS web server. Not used if "listen-https" is not set.
|
|
|
|
# Format: <filename>
|
|
|
|
#
|
|
|
|
# key-file:
|
|
|
|
|
|
|
|
# Path to the cert file for the HTTPS web server. Not used if "listen-https" is not set.
|
|
|
|
# Format: <filename>
|
|
|
|
#
|
|
|
|
# cert-file:
|
|
|
|
|
2021-10-29 20:03:41 +02:00
|
|
|
# If set, also publish messages to a Firebase Cloud Messaging (FCM) topic for your app.
|
2021-12-02 05:08:12 +01:00
|
|
|
# This is optional and only required to save battery when using the Android app.
|
2021-10-29 20:03:41 +02:00
|
|
|
#
|
|
|
|
# firebase-key-file: <filename>
|
|
|
|
|
2021-11-03 16:33:34 +01:00
|
|
|
# If set, messages are cached in a local SQLite database instead of only in-memory. This
|
|
|
|
# allows for service restarts without losing messages in support of the since= parameter.
|
|
|
|
#
|
2021-12-09 16:23:17 +01:00
|
|
|
# To disable the cache entirely (on-disk/in-memory), set "cache-duration" to 0.
|
|
|
|
#
|
2021-12-09 04:08:44 +01:00
|
|
|
# Note: If you are running ntfy with systemd, make sure this cache file is owned by the
|
|
|
|
# ntfy user and group by running: chown ntfy.ntfy <filename>.
|
|
|
|
#
|
2021-11-03 16:33:34 +01:00
|
|
|
# cache-file: <filename>
|
|
|
|
|
2021-10-29 20:03:41 +02:00
|
|
|
# Duration for which messages will be buffered before they are deleted.
|
|
|
|
# This is required to support the "since=..." and "poll=1" parameter.
|
|
|
|
#
|
2021-12-09 16:23:17 +01:00
|
|
|
# You can disable the cache entirely by setting this to 0.
|
|
|
|
#
|
2021-11-03 16:33:34 +01:00
|
|
|
# cache-duration: 12h
|
2021-10-29 20:03:41 +02:00
|
|
|
|
|
|
|
# Interval in which keepalive messages are sent to the client. This is to prevent
|
|
|
|
# intermediaries closing the connection for inactivity.
|
|
|
|
#
|
2021-12-02 05:08:12 +01:00
|
|
|
# Note that the Android app has a hardcoded timeout at 77s, so it should be less than that.
|
|
|
|
#
|
2021-10-29 20:03:41 +02:00
|
|
|
# keepalive-interval: 30s
|
|
|
|
|
2021-11-05 18:46:27 +01:00
|
|
|
# Interval in which the manager prunes old messages, deletes topics
|
|
|
|
# and prints the stats.
|
2021-10-29 20:03:41 +02:00
|
|
|
#
|
|
|
|
# manager-interval: 1m
|
2021-11-05 18:46:27 +01:00
|
|
|
|
|
|
|
# Rate limiting: Total number of topics before the server rejects new topics.
|
|
|
|
#
|
|
|
|
# global-topic-limit: 5000
|
|
|
|
|
|
|
|
# Rate limiting: Number of subscriptions per visitor (IP address)
|
|
|
|
#
|
|
|
|
# visitor-subscription-limit: 30
|
|
|
|
|
|
|
|
# Rate limiting: Allowed GET/PUT/POST requests per second, per visitor:
|
|
|
|
# - visitor-request-limit-burst is the initial bucket of requests each visitor has
|
|
|
|
# - visitor-request-limit-replenish is the rate at which the bucket is refilled
|
|
|
|
#
|
|
|
|
# visitor-request-limit-burst: 60
|
|
|
|
# visitor-request-limit-replenish: 10s
|
|
|
|
|
|
|
|
# If set, the X-Forwarded-For header is used to determine the visitor IP address
|
|
|
|
# instead of the remote address of the connection.
|
|
|
|
#
|
|
|
|
# WARNING: If you are behind a proxy, you must set this, otherwise all visitors are rate limited
|
|
|
|
# as if they are one.
|
|
|
|
#
|
|
|
|
# behind-proxy: false
|