I have a server running at localhost:3030 and I can access a number of web pages. When I do a wget on localhost:3030/index.html
, I obtain the web page. Using a ProxyPassMatch, I was trying to redirect a request on example.com/sparql/<something>
to locahost:3030/<something>
but it is not working. I am using debian and configuration is as follows:
<VirtualHost *:80>
ServerName example.com
ProxyPass "/sparql" "http://localhost:3030/"
ProxyPassReverse "/sparql" "http://localhost:3030/"
ProxyPassReverseCookieDomain "localhost" "example.com"
....
<VirtualHost *:80>
When I am sending a request on example.com/sparql/index.html
, the page is returning but none of the images and css files are being returned. Is there a problem with configuration ?