Question - change ports and protocol (Docker version)

Dear Eramba experts
I would lke to run Eramba with http on port 80 (because I will use a Caddy server in front).
How can I do that with the Docker/Community-Edition?

Best regards
Wolfgang

Hello,

In docker-compose.simple-install.yml you have to edit the mounted apache conf file
from:
- ./apache/vhost-ssl.conf:/etc/apache2/sites-available/000-default.conf
to
- ./apache/vhost.conf:/etc/apache2/sites-available/000-default.conf
and port mapping from
- 8443:443
to whatever you want (I believe in your case it might be 80:80) and also the public address setting in .env file. Then just compose eramba image as usual.

IT WORKS!!!
Great help - many thanks !

1 Like