mirror of
https://github.com/YunoHost-Apps/ntfy_ynh.git
synced 2024-09-03 19:46:27 +02:00
1fa0147e21
(cherry picked from commit 1a7fde7c120fea7872ec909141a7e7824dbff376) Signed-off-by: Alexander Wühr <awuehr@pnyhf.eu>
20 lines
589 B
YAML
20 lines
589 B
YAML
# ntfy server config file
|
|
#
|
|
# Please refer to the documentation at https://ntfy.sh/docs/config/ for details.
|
|
# All options also support underscores (_) instead of dashes (-) to comply with the YAML spec.
|
|
|
|
cache-file: __INSTALL_DIR__/data/cache.db
|
|
cache-startup-queries: |
|
|
pragma journal_mode = WAL;
|
|
pragma synchronous = normal;
|
|
pragma temp_store = memory;
|
|
pragma busy_timeout = 15000;
|
|
vacuum;
|
|
|
|
auth-file: __INSTALL_DIR__/data/user.db
|
|
auth-default-access: "deny-all"
|
|
enable-login: true
|
|
|
|
attachment-cache-dir: __INSTALL_DIR__/data/attachments
|
|
|
|
upstream-base-url: "https://ntfy.sh"
|