Hi, on a shared server, I need to serve all requests to a URL (my.site.com/) through another local server. In Apache, I put:
<VirtualHost *:80>
ServerName my.site.com:80
DocumentRoot /path/to/files/
ProxyPass / http://127.0.0.1:port/
ProxyPassReverse / http://127.0.0.1:port/
</VirtualHost>
How do I implement this in litespeed? I'm on a shared host that uses Apache configs, so I can't go through litespeed's "Virtual Host" admin. I see the "Web Server" type of "External App," but seems to be no way to call it for a specific path.
Thanks
Sean DeNigris
<VirtualHost *:80>
ServerName my.site.com:80
DocumentRoot /path/to/files/
ProxyPass / http://127.0.0.1:port/
ProxyPassReverse / http://127.0.0.1:port/
</VirtualHost>
How do I implement this in litespeed? I'm on a shared host that uses Apache configs, so I can't go through litespeed's "Virtual Host" admin. I see the "Web Server" type of "External App," but seems to be no way to call it for a specific path.
Thanks
Sean DeNigris