Hi folks i've created a Debian 10 machine and following all instrucions on
https://github.com/blindsidenetworks/scalelite i've created
- PostgreSQL server (apt package, same machine)
- Redis persistent (apt package, same machine)
- Docker (apt package)
- Shared NFS folder
- With Docker/certbot image i've created a ssl certificate on /etc/letsencrypt
- I can rake the postgresql database.
- I can run api commands
But i'cant run scalelite-nginx docker image. It fail's on start.
If i got logs
root@aulas:~# docker logs b27e381f8996
Startup script was run as init, re-execing using tini.
Generating templated nginx configuration...
Using SSL configuration template.
Starting nginx periodic reload process...
Starting nginx...
2020/05/03 17:49:19 [emerg] 7#7: host not found in upstream "scalelite-api" in /etc/nginx/conf.d/scalelite.common:2
nginx: [emerg] host not found in upstream "scalelite-api" in /etc/nginx/conf.d/scalelite.common:2
And my /etc/default/scalelite
SECRET_KEY_BASE=xxxxxx
LOADBALANCER_SECRET=xxxxxx
SCALELITE_TAG=v1
SCALELITE_RECORDING_DIR=/mnt/scalelite-recordings/var/bigbluebutton
NGINX_SSL=true
SCALELITE_NGINX_EXTRA_OPTS=--mount type=bind,source=/etc/letsencrypt,target=/etc/nginx/ssl,readonly
What can i do?