Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
458
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. NameVirtualHost 34.200.216.215:80
  2.  
  3. <VirtualHost 34.200.216.215:80>
  4. ServerAdmin lytha@me.com
  5. ServerName robinhood.iamlyth.com
  6. ProxyPreserveHost On
  7. # setup the proxy
  8. <Proxy *>
  9. Order allow,deny
  10. Allow from all
  11. </Proxy>
  12. ProxyPass / http://localhost:8080/
  13. ProxyPassReverse / http://localhost:8080/
  14. </VirtualHost>
  15.  
  16. <VirtualHost 34.200.216.215:80>
  17. ServerAdmin lytha@me.com
  18. ServerName tensorboard.iamlyth.com
  19. ProxyPreserveHost On
  20. # setup the proxy
  21. <Proxy *>
  22. Order allow,deny
  23. Allow from all
  24. </Proxy>
  25. ProxyPass / http://localhost:8081/
  26. ProxyPassReverse / http://localhost:8081/
  27. </VirtualHost>
  28.  
  29. <VirtualHost 34.200.216.215:80>
  30. ServerAdmin lytha@me.com
  31. ServerName iamlyth.com
  32. ServerAlias www.iamlyth.com
  33. DocumentRoot /var/www/html/
  34. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement