We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
Is the Fider Docker setup compatible with usage behind a reverse proxy?
After numerous attempts at modifying my Docker(-Compose) configuration, I haven't been able to get Fider working.
Could you help me?
version: "3.3" services: caddy-gen: container_name: caddy-gen image: "wemakeservices/caddy-gen:latest" restart: always volumes: - /var/run/docker.sock:/tmp/docker.sock:ro - caddy-certificates:/data/caddy ports: - "80:80" - "443:443" networks: - prod_network db: restart: always image: postgres:12 volumes: - /var/fider/pg_data:/var/lib/postgresql/data environment: POSTGRES_USER: fider POSTGRES_PASSWORD: s0m3g00dp4ssw0rd app: restart: always image: getfider/fider:stable ports: - "80:3000" environment: BASE_URL: http://localhost DATABASE_URL: postgres://fider:s0m3g00dp4ssw0rd@db:5432/fider?sslmode=disable JWT_SECRET: VERY_STRONG_SECRET_SHOULD_BE_USED_HERE EMAIL_NOREPLY: [email protected] labels: virtual.host: "fider.yourdomain.com" virtual.port: "3000" virtual.tls-email: "[email protected]" volumes: caddy-certificates: driver: local networks: prod_network: driver: bridge
I have the impression that this Docker setup isn't designed to work behind a reverse proxy.
It seems to work either:
But HTTP to HTTPS through a reverse proxy doesn’t seem to work.
Am I mistaken?
Thank you,
Merry Christmas!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
Is the Fider Docker setup compatible with usage behind a reverse proxy?
After numerous attempts at modifying my Docker(-Compose) configuration, I haven't been able to get Fider working.
Could you help me?
I have the impression that this Docker setup isn't designed to work behind a reverse proxy.
It seems to work either:
But HTTP to HTTPS through a reverse proxy doesn’t seem to work.
Am I mistaken?
Thank you,
Merry Christmas!
The text was updated successfully, but these errors were encountered: