2
0

httpd-vhost.conf 329 B

123456789101112
  1. <VirtualHost *:80>
  2. DocumentRoot <doc root>
  3. ServerName <hostname>
  4. ErrorLog <errlog path>
  5. CustomLog <customlog path> common
  6. ProxyRequests Off
  7. ProxyPreserveHost On
  8. ProxyPass http://localhost:<port>
  9. ProxyPassReverse http://localhost:<port>
  10. </VirtualHost>