Last edited:
Got inspired by @Rusty and the article on Blackvoid, I decided to give NGINX proxy manager a try.
Installed just fine via docker compose but I can't create any hew proxy host properly.
So far I have the containers up and running, no errors in log.
Used the following compose:
Ports on my router are forwarded as following image:
I created a test proxy host as following:
When I open it I get a message from Web Station "Your web site is not setup yet"!
I uninstalled Web Station and still get the same page.
Any ideas?
Installed just fine via docker compose but I can't create any hew proxy host properly.
So far I have the containers up and running, no errors in log.
Used the following compose:
YAML:
version: '3'
services:
app:
image: 'jc21/nginx-proxy-manager:latest'
ports:
- '8180:80'
- '81:81'
- '8443:443'
environment:
TZ: "Europe/Athens"
DB_MYSQL_HOST: "db"
DB_MYSQL_PORT: 3306
DB_MYSQL_USER: "npm"
DB_MYSQL_PASSWORD: "npm"
DB_MYSQL_NAME: "npm"
volumes:
- /volume2/docker/npm/data:/data
- /volume2/docker/npm/letsencrypt:/etc/letsencrypt
db:
image: 'jc21/mariadb-aria:latest'
environment:
MYSQL_ROOT_PASSWORD: 'npm'
MYSQL_DATABASE: 'npm'
MYSQL_USER: 'npm'
MYSQL_PASSWORD: 'npm'
volumes:
- /volume2/docker/npm/data/mysql:/var/lib/mysql
Ports on my router are forwarded as following image:
I created a test proxy host as following:
When I open it I get a message from Web Station "Your web site is not setup yet"!
I uninstalled Web Station and still get the same page.
Any ideas?