apache.conf 260 B

1234567891011
  1. NameVirtualHost *:80
  2. <VirtualHost *:80>
  3. ServerName xxxx.com
  4. ProxyRequests Off
  5. <Proxy *>
  6. Order deny,allow
  7. Allow from all
  8. </Proxy>
  9. ProxyPass / http://127.0.0.1:9033/
  10. ProxyPassReverse / http://127.0.0.1:9033/
  11. </VirtualHost>