Folks;
I have a virtual host file & i have it configured to run an application i have & it runs it fine.
Now i need to attach another application to the same Virtual host file. How can i do that?
here's my existing Virtual host file (actual names replaced with aliases below):
<VirtualHost host_ip:80>
ServerAdmin admin
DocumentRoot /opt/document
ServerName server name:80
ServerAlias alias
ProxyRequests off
ErrorLog "|/PATH_TO_error_log 1M"
CustomLog "|/PATH_TO_access_log 1M" common
ErrorDocument 404 /index.html
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
Redirect permanent /
http://server/app1
ProxyPass /app1
http://server:8080/app1
ProxyPassReverse /app1
http://server:8080/app1
</VirtualHost>