Even with an apache2 proxy I am not able to redirect, Getting an empty page
Running rei3 in containers, exposed rei3 on http, 7002 which is working when accessing localhost:7002, add proxy config in apache container running on 80 to redirect to localhost:7002.
my apache config
Group ${APACHE_RUN_GROUP}
ErrorLog ${APACHE_LOG_DIR}/error.log
HostnameLookups Off
# Include module configuration:
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf
# Include list of ports to listen on
Include ports.conf
<VirtualHost *:80>
ServerName acme.com
<Location />
Order allow,deny
Allow from all
Require all granted
</Location>
ProxyPass /tickets http://127.0.0.1:7002/
ProxyPassReverse /tickets http://127.0.0.1:7002/
</VirtualHost>```