This is not a local install - its sits on a hetzner server
I have managed to install Corteza and get it running on a docker container but having issues connecting to the web ui. Here is my docker-compose ps:
production-server-1 cortezaproject/corteza:2023.9.6 "./bin/corteza-serve…" server 20 seconds ago Up 8 seconds (health: starting) 192.168.1.106:18083->80/tcp
My nginx proxy manager sits on 192.168.1.105 and works well on other containers but not sure how to configure it here. My proxy manager entry is https://192.168.1.106:18083 but I get bad gateway.
Anyone have ideas how I can tweak this configuration?
My docker-compose is:
services:
server:
image: cortezaproject/corteza:${VERSION}
restart: always
env_file: [ .env ]
depends_on: [ db ]
ports: [ "192.168.1.106:18083:80" ]
networks: [ internal ]
and part of my env is:
DOMAIN=my.domain.tld (use domain name without port here)
VERSION=2023.9.6