Hi Alex,
I’ve visted both
Xibo 1.8.9 with Docker on Ubuntu 16.04 &
Question about multiple setups (new to Docker)
It worked on a non public server.
However now that I’ve installed it on my public server. I’m seeing the index folders without the login page.
The structure I did was:
example.com (main site)
one.example.com (port 8080)
two.example.com (port 8181)
configured vhosts
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
ProxyPreserveHost On
ProxyPass / http://127.0.0.1:8181/
ProxyPassReverse / http://127.0.0.1:8181/
docker-compose -f cms_custom-ports.yml up -d
and what i see is just the index page.
Thanks!