Advertisement
imehesz

apache proxy for node

Dec 28th, 2013
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin webmaster@localhost
  3. ServerName nodetest.blahblah.com
  4. ProxyRequests off
  5. <Proxy *>
  6. Order deny,allow
  7. Allow from all
  8. </Proxy>
  9. <Location />
  10. ProxyPass http://localhost:1337/
  11. ProxyPassReverse http://localhost:1337/
  12. </Location>
  13. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement