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
Describe the bug If Etherpad is running behind a corporate proxy with authentication, then some features like installation of plugins don't work.
To Reproduce Steps to reproduce the behavior:
Run the docker-compose.yml below and try to acess http://0.0.0.0:9001/admin/plugins :
services: app: user: "0:0" image: etherpad/etherpad:latest tty: true stdin_open: true volumes: - plugins:/opt/etherpad-lite/src/plugin_packages - etherpad-var:/opt/etherpad-lite/var depends_on: - postgres environment: NODE_ENV: production ADMIN_PASSWORD: ${DOCKER_COMPOSE_APP_ADMIN_PASSWORD:-admin} DB_CHARSET: ${DOCKER_COMPOSE_APP_DB_CHARSET:-utf8mb4} DB_HOST: postgres DB_NAME: ${DOCKER_COMPOSE_POSTGRES_DATABASE:-etherpad} DB_PASS: ${DOCKER_COMPOSE_POSTGRES_PASSWORD:-admin} DB_PORT: ${DOCKER_COMPOSE_POSTGRES_PORT:-5432} DB_TYPE: "postgres" DB_USER: ${DOCKER_COMPOSE_POSTGRES_USER:-admin} DEFAULT_PAD_TEXT: ${DOCKER_COMPOSE_APP_DEFAULT_PAD_TEXT:- } DISABLE_IP_LOGGING: ${DOCKER_COMPOSE_APP_DISABLE_IP_LOGGING:-false} SOFFICE: ${DOCKER_COMPOSE_APP_SOFFICE:-null} TRUST_PROXY: ${DOCKER_COMPOSE_APP_TRUST_PROXY:-true} https_proxy: http://proxyUser:proxyPass@proxy:3128 ports: - "${DOCKER_COMPOSE_APP_PORT_PUBLISHED:-9001}:${DOCKER_COMPOSE_APP_PORT_TARGET:-9001}" postgres: image: postgres:16 environment: POSTGRES_DB: ${DOCKER_COMPOSE_POSTGRES_DATABASE:-etherpad} POSTGRES_PASSWORD: ${DOCKER_COMPOSE_POSTGRES_PASSWORD:-admin} POSTGRES_PORT: ${DOCKER_COMPOSE_POSTGRES_PORT:-5432} POSTGRES_USER: ${DOCKER_COMPOSE_POSTGRES_USER:-admin} PGDATA: /var/lib/postgresql/data/pgdata restart: always volumes: - postgres_data:/var/lib/postgresql/data proxy: image: yegor256/squid-proxy:latest ports: - 3128:3128 environment: - USERNAME=proxyUser - PASSWORD=proxyPass volumes: postgres_data: plugins: etherpad-var:
Expected behavior It should work.
Server (please complete the following information):
node --version
npm --version
Desktop (please complete the following information):
Additional context As far as I know, the problem only occurs if the proxy requires authentication.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
If Etherpad is running behind a corporate proxy with authentication, then some features like installation of plugins don't work.
To Reproduce
Steps to reproduce the behavior:
Run the docker-compose.yml below and try to acess http://0.0.0.0:9001/admin/plugins :
Expected behavior
It should work.
Server (please complete the following information):
node --version
): v23.5.0npm --version
): 10.9.2Desktop (please complete the following information):
Additional context
As far as I know, the problem only occurs if the proxy requires authentication.
The text was updated successfully, but these errors were encountered: