Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <VirtualHost *:88>
  2. ServerAdmin webmaster@localhost
  3. DocumentRoot /var/www
  4. <Directory /var/www/>
  5. Options -Indexes -MultiViews
  6. AllowOverride ALL
  7. Require all granted
  8. </Directory>
  9.  
  10. <Directory /var/www/vod/>
  11. Order deny,allow
  12. Deny from all
  13. Allow from 127.0.0.1
  14. </Directory>
  15. ErrorLog ${APACHE_LOG_DIR}/error.log
  16. CustomLog ${APACHE_LOG_DIR}/access.log combined
  17. TimeOut 1800
  18. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement