Sites gives connection refused via NPM ? #3097
Unanswered
jslegers73
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
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-home.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? I know that the LibreNMS container is also using Nginx.
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-home.net:8668/
DISABLE_IPV6=true
depends_on:
mariadb
links:
mariadb:libredb
If I check the proxy host # error or access log files they are both empty.
John
Beta Was this translation helpful? Give feedback.
All reactions