dacodedbeat/ntfy-notifier

Symfony Ntfy Notifier Bridge

Installs: 2 676

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-notifier-bridge

0.0.1 2022-05-20 17:56 UTC

This package is auto-updated.

Last update: 2024-04-20 22:11:47 UTC


README

Provides Ntfy integration for Symfony Notifier.

DSN example

NTFY_DSN=ntfy://[USER:PASSWORD@]NTFY_URL/TOPIC?[scheme=[https]]

where:

  • NTFY_URL is the ntfy server which you are using

    • if default is provided, this will default to the public ntfy server hosted on ntfy.sh.
    • note: you can provide specific ports here if the selfhosted ntfy server is running on a non-standard web port.
      • example: NTFY_DSN=ntfy://foo.bar:8080/myntfytopic
  • TOPIC is the topic on this ntfy server.

  • Depending on whether the server is configured to support access control:

    • USER is the username to access the given topic on the ntfy server which you are using
    • PASSWORD is the username to access the given topic on the ntfy server which you are using

Optional configuration:

  • scheme should be adjusted to the appropriate value for the in the ntfy server (defaults to https if not set)
    • example: http should be used if the ntfy server is listening on the insecure HTTP protocol