Hi,
I have a docker instance running of LibreNMS via this docker image jarischaefer/docker-librenms.
LibreNMS is all running fine. The next step I want to do is use my Nginx Proxy Manager to add an Self Signed Certificate via a proxyhost.
This all works well with my other docker containers. Except I can’t get it to work on the LibreNMS container.
When I create a proxy host librenms.jsl-thuis.net pointing to the docker IP and port 8668 I get an ERR_CONNECTION_REFUSED error on my browser.
Is it even possible to use LibreNMS behind a Nginx Proxy Manager Host?
How can I make this work. It is not a must but would be nice.
This is how my docker-compose part looks like.
librenms:
image: jarischaefer/docker-librenms:latest-arm32v7
container_name: LibreNMS
hostname: librenms
ports:8668:80
volumes:
./librenms/logs:/opt/librenms/logs
./librenms/rrd:/opt/librenms/rrd
./librenms/custom.config.php:/opt/librenms/conf.d/custom.config.php:ro
environment:
APP_KEY=base64:14vNi8I98OAHvi5sNzwvr389X9mRsCWfW/t/bHvMamc=
DB_HOST=libredb
DB_NAME=librenms
DB_USER=librenms
DB_PASS=‘password’
BASE_URL=http://librenms.jsl-thuis.net:8668/
DISABLE_IPV6=true
depends_on:
mariadb
links:
mariadb:libredb
John