mirror of
https://github.com/plankanban/planka.git
synced 2026-02-25 11:21:03 +03:00
https apache as proxy #69
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mprivoro on GitHub (Feb 14, 2021).
apache.conf
ProxyPreserveHost On
ProxyRequests Off
ProxyPass / http://example.com:3000/
ProxyPassReverse / http://example.com:3000/
docker-compose.yml
ports:
- 3003:1337
environment:
- BASE_URL=https://example.com:3003
this setup is showing "none stop" rotated cycle after the login window.
no matter which BASE_URL tried.
the same is working for any other http->https forwarding by apache.
could somebody suggest the correct way to proxy planka to https using apache?
is it a bug or feature?:)
@mprivoro commented on GitHub (Feb 14, 2021):
resolved by adding also this proxy confs:
ProxyPass /socket.io ws://example.com:3003/socket.io/
ProxyPassReverse /socket.io ws://example.com:3003/socket.io/
@byteSamurai commented on GitHub (May 17, 2021):
@mprivoro could you close this issue, if it is resolved?
@mprivoro commented on GitHub (May 18, 2021):
resolved by adding also this proxy confs:
ProxyPass /socket.io ws://example.com:3003/socket.io/
ProxyPassReverse /socket.io ws://example.com:3003/socket.io/