Redirecting Requests from Apache to Jetty
Posted on Sun 05 November 2017 in Sysadmin • Tagged with Apache, Jetty, Ubuntu, web server, SSL, proxy
Assuming you are running an Apache server with a virtual host for abs.mydomain.com, put this into the virtual host's .conf
file to redirect all traffic to a Jetty web server running locally behind your Apache:
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://localhost:1234/ retry …
Continue reading