Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin webmaster@localhost
  3. DocumentRoot /var/www/website/src
  4. ErrorLog ${APACHE_LOG_DIR}/error.log
  5. CustomLog ${APACHE_LOG_DIR}/access.log combined
  6. <Directory "/var/www/website/src">
  7. Options Indexes FollowSymLinks Includes execCGI
  8. AllowOverride All
  9. Require all granted
  10. </Directory>
  11. ProxyPass /node http://sampleurl:9000/
  12. ProxyPassReverse /node http://sampleurl:9000/
  13. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement