Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName subdomain.example.com
  3.  
  4. ErrorLog ${APACHE_LOG_DIR}/error.log
  5. CustomLog ${APACHE_LOG_DIR}/access.log combined
  6.  
  7. ProxyRequests Off
  8. ProxyPreserveHost On
  9. <Proxy *>
  10. Order deny,allow
  11. Allow from all
  12. </Proxy>
  13. ProxyPass / http://www.example.com:8080/xyz/
  14. ProxyPassReverse / http://www.example.com:8080/xyz/
  15. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement