Results 18 comments of Javier

@kissi7 I would really appreciate if you share your working ` /etc/apache2/apache2.conf`, many thanks in advance.

@kissi7 disregard, snippet of my working config: ``` LogFormat "%v:%p %h %{X-Forwarded-For}i %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined LogFormat "%h %{X-Forwarded-For}i %l %u %t \"%r\" %>s %O...

@HJunyuan the key concept here is the ability of the reverse proxy (I have tested it with nginx but no luck yet with traefik) to add some headers to the...

@HJunyuan OK, so we narrow down the issue to the plugin, and how it get the public IP address of the request in order to allow or deny it. I...

> I have the latest docker image from nextcloud (22.1.0-apache), and still i get the nginx proxy ip address on docker logs. The reverse proxy is an nginxproxy/nginx-proxy container. No...

None of the solutions provided by @yelizariev or @d-fence worked for my needs: * I would like to have a completely unattended install: ``` "Cmd": [ "--", "-d", "erp", "-i",...

Jus for the records, with official [nginx](https://hub.docker.com/_/nginx) image it works as expected, mounting: ` -v /path/to/network_internal.conf:/etc/nginx/network_internal.conf ` I tested it with 3 containers (official nginx, nginx-gen and nginx-letsencryptcompanion)

I can reproduce the issue: ``` docker run \ --name collabora \ -e VIRTUAL_HOST=collabora.example.com \ -e VIRTUAL_PORT=9980 \ -e VIRTUAL_PROTO=http \ -e LETSENCRYPT_HOST=collabora.example.com \ -e [email protected] \ -e RESOLVE_TO_PROXY_IP=true \...

As suggested [here](https://github.com/CollaboraOnline/Docker-CODE/issues/10#issuecomment-359020285) the workaround was to start up the container with below environment variable: ` -e "SLEEPFORDEBUGGER=0" ` Final working receipt in my case: ``` docker run \ -t...

Possible duplicate of [32](https://github.com/CollaboraOnline/Docker-CODE/issues/32). Kindly try workaround documented [here](https://github.com/CollaboraOnline/Docker-CODE/issues/32#issuecomment-419053365).