-
I noticed that the docker image is listening on both 8000 and 8080. Which one is preferred? 8080 seems to be running though an nginx proxy apprise-api/apprise_api/etc/nginx.conf Line 52 in d33c50f |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
8000 is the port to use if you want to leverage the website to help with the configuration (static file hosting, workers, threading, container log setup, etc). 8080 is the gunicorn application in the background. It's direct to the API (Python CGI interface). I mean, there is no harm using this path if you adopt some of the configuration in the NGinX mapping described above. Personally I would advise using port 8000 as documented though. |
Beta Was this translation helpful? Give feedback.
8000 is the port to use if you want to leverage the website to help with the configuration (static file hosting, workers, threading, container log setup, etc).
8080 is the gunicorn application in the background. It's direct to the API (Python CGI interface). I mean, there is no harm using this path if you adopt some of the configuration in the NGinX mapping described above. Personally I would advise using port 8000 as documented though.