I've following virtual host configuration. The desired result is:
- If someone requests http://test.myserver.com/myapp, apache serves him from /var/www/myapp
- And if http://test.myserver.com/ is requested, apache redirects it to port 8069.
2nd is working but 1st is not. Can someone help please!
<VirtualHost *:80>
ServerName test.myserver.com
Alias /myapp /var/www/myapp
<Directory /var/www/myapp>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
ProxyPass / http://localhost:8069/
ProxyPassReverse / http://localhost:8069/
</VirtualHost>
See Question&Answers more detail:os