I have been trying to use rendertron through an apache proxy, but all the base routes are "null", is it possible that I am making some configuration error? I would appreciate if you could help me.
Rendertron is running on port 3000 that has by default. and the apache host is this:
<VirtualHost *:80>
ServerName render.vool.xyz
ProxyRequests Off
<Proxy *>
#Require all granted
Order deny,allow
Allow from all
</Proxy>
<Location />
ProxyPass http://localhost:3000/
ProxyPassReverse http://localhost:3000/
Header set Access-Control-Allow-Origin "http://render.vool.xyz"
</Location>
</VirtualHost>
Rendertron service is up and running in the render.vool.xyz url
Thanks again
I could detect that a slash corresponding to the protocol in the initialization is removed from the url
I solved it by adding the following method in the rendertron class and calling it from the handleRenderRequest method