Skip to content

[BUGFIX] Update Apprise docs, correcting gotify instructions to match apprise syntax#1725

Merged
microtechno9000 merged 2 commits intoautomatic-ripping-machine:mainfrom
jacobxtyler:docs/apprise-wiki-gotify
Mar 10, 2026
Merged

[BUGFIX] Update Apprise docs, correcting gotify instructions to match apprise syntax#1725
microtechno9000 merged 2 commits intoautomatic-ripping-machine:mainfrom
jacobxtyler:docs/apprise-wiki-gotify

Conversation

@jacobxtyler
Copy link
Copy Markdown
Contributor

Description

Apprise wiki instructs use of http(s), but the apprise syntax is gotify(s). apprise_bulk.py doesn't parse the gotify string and choose the proper apprise syntax like it does for ntfy:

if host.startswith("https://"):
ntfy_serverstring = 'ntfys://'
host = host.replace("https://", "")
if host.startswith("http://"):
host = host.replace("http://", "")

'GOTIFY_TOKEN': str(cfg['GOTIFY_HOST']) + "/" + str(cfg['GOTIFY_TOKEN']),

Fixes #1714

Type of change

Please delete options that are not relevant.

  • This change requires a documentation update

How Has This Been Tested?

I tested using ARM in a docker container and gotify in a docker container behind nginx reverse proxy with SSL/TSL. None of the following worked:

  • http://LOCAL_IP

  • https://LOCAL_IP

  • https://REVERSE-PROXY_URL

  • Docker

Checklist:

  • My code follows the style guidelines of this project
  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have tested that my fix is effective or that my feature works

Changelog:

Simply updated the wiki documentation to change http to gotify and https to gotifys.

Logs

Snippet from a rip log:

03-05-2026 20:12:32 ARM: DEBUG: utils.database_adder: Trying to add Notifications
03-05-2026 20:12:32 ARM: DEBUG: utils.database_adder: successfully written Notifications to the database
03-05-2026 20:12:32 ARM: DEBUG: apprise_bulk.apprise_notify: Sent apprise to GOTIFY_TOKEN was successful
03-05-2026 20:12:32 ARM: DEBUG: utils.notify: apprise-config: /etc/arm/config/apprise.yaml

gotify server log (disregard incorrect TZ):

2026-03-06T01:12:32Z | 200 |   20.078093ms |      172.25.0.2 | POST     "/message"
2026-03-06T01:12:47Z | 200 |     3.05633ms |      172.25.0.2 | GET      "/application"

apprise.yaml

GOTIFY_TOKEN: "REDACTED"
GOTIFY_HOST: "gotifys://gotify.my.domain"

previous documentation was incorrect, must use {gotify apprise syntax}(https://appriseit.com/services/gotify/)
Added formatting and clarification for Gotify settings in the configuration documentation.
@sonarqubecloud
Copy link
Copy Markdown

sonarqubecloud bot commented Mar 6, 2026

Copy link
Copy Markdown
Collaborator

@microtechno9000 microtechno9000 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for making ARM better

@microtechno9000 microtechno9000 merged commit a34b941 into automatic-ripping-machine:main Mar 10, 2026
12 of 13 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Gotify notification instructions in wiki are incorrect

2 participants