-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Option to use HTTP #14
Comments
Hi Did you find a solution to this? I would like to proxy it as well. |
I don't really use koreader anymore so I haven't looked deeply into this. But to get around this issue, will probably have to create your own docker image without the nginx setup in the provided image. |
It looks like there is also an HTTP config block: https://github.com/koreader/koreader-sync-server/blob/master/config/nginx.conf#L26 Its port is |
docker run -d --restart=always -p 17200:17200 -p 7200:7200 \\n -v `pwd`/logs/app:/app/koreader-sync-server/logs \\n -v `pwd`/logs/redis:/var/log/redis \\n -v `pwd`/data/redis:/var/lib/redis \\n --name=koreader_sync koreader/kosync:latest nginx ssl proxy to 17200 is ok,tks @sabberworm |
Correct me if I'm wrong, but from what I can tell it seems the
koreader/kosync
docker image automatically tries to use https and provides its own certificates?While this does make it easy to setup, I would like to have an option to disable https and have the server work with just regular http. I have traefik running as a reverse proxy in front of the server which handles https and routes traffic to the appropriate backend.
The text was updated successfully, but these errors were encountered: