18 lines
501 B
YAML
18 lines
501 B
YAML
# ntfy server configuration
|
|
# Ubicación: ./ntfy/config/server.yml
|
|
|
|
base-url: "https://ntfy.carloselugo.com"
|
|
listen-http: ":80"
|
|
|
|
# Cache de mensajes (para cuando el celular no está conectado)
|
|
cache-file: "/var/cache/ntfy/cache.db"
|
|
cache-duration: "12h"
|
|
|
|
# Autenticación — IMPORTANTE: protege tu servidor
|
|
auth-file: "/etc/ntfy/user.db"
|
|
auth-default-access: "deny-all"
|
|
|
|
# Límites (ajusta según necesites)
|
|
global-topic-limit: 50
|
|
visitor-request-limit-burst: 60
|
|
visitor-request-limit-replenish: "5s" |