-
-
Notifications
You must be signed in to change notification settings - Fork 87
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
Bug: docker with nginx SSL reverse proxy #422
Comments
Your config and logs look good. It is most likely something wrong with your reverse proxy setup/config. |
Thanks for your confirmation of my docker file. I'm still wondering what's wrong, but at least now I can focus on the proxy. |
@thatso Did you find the error? I've the same issue with jwilder nginx proxy. My docker-compose config file looks like yours but I get an 502 error and can't find any solution. |
I found the solution for me in #201 and my compose file is: version: "3"
services:
kitchenowlfront:
image: tombursch/kitchenowl-web:latest
container_name: kitchenowlfront
restart: unless-stopped
depends_on:
- kitchenowlback
environment:
- BACK_URL=kitchenowlback:5000
- VIRTUAL_HOST=kitchen.[hidden].de
- LETSENCRYPT_HOST=kitchen.[hidden].de
- LETSENCRYPT_EMAIL=info@[hidden].de
- WEBROOT=/var/www/web/kitchenowl
kitchenowlback:
image: tombursch/kitchenowl:latest
container_name: kitchenowlback
environment:
- JWT_SECRET_KEY=secret
ports:
- 5000:5000
volumes:
kitchenowl_data:
networks:
default:
external:
name: nginx-proxy Needed the Thank you! |
@Karamellwuerfel : this is great news! Still waiting for the AIO container though in the hope it will simplify the setup even more. 😉 |
@thatso: I used the I tried without The AIO was (I think) merged today and you can use the BETA in the docs. 😺 |
Awesome that you've found a solution. I've merged the docs for the AIO container and will publish the corresponding release later today 😃 |
For later reference and future readers: this is my currently working docker compose file with the
@TomBursch: your AIO container seems to work fine, thanks! 👍 |
Is this urgent?
No
What parts are affected
Frontend
What is the server version
docker latest
What is the client version
docker latest
What platform are you using
Web
What's the problem 🤔
I'm trying to run KitchenOwl in docker behind a ngnix SSL reverse proxy, however I only get
502 Bad Gateway openresty
.Most likely, I'm only missing some detail. The docker compose file seems to resemble the one in the docs.
Share your logs
Share your configuration
The text was updated successfully, but these errors were encountered: