Guest User

Untitled

a guest
Jul 24th, 2015
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. # ************************************
  2. # Vhost template in module puppetlabs-apache
  3. # Managed by Puppet
  4. # ************************************
  5.  
  6. <VirtualHost *:80>
  7. ServerName nodepool.openstack.org
  8.  
  9. ## Vhost docroot
  10. DocumentRoot "/var/log/nodepool/image"
  11.  
  12. ## Directories, there should at least be a declaration for /var/log/nodepool/image
  13.  
  14. <Directory "/var/log/nodepool/image">
  15. Options Indexes FollowSymLinks MultiViews
  16. AllowOverride None
  17. Require all granted
  18. </Directory>
  19.  
  20. ## Logging
  21. ErrorLog "/var/log/apache2/nodepool.openstack.org_error.log"
  22. ServerSignature Off
  23. CustomLog "/var/log/apache2/nodepool.openstack.org_access.log" combined
  24. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment