Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName example.com
  3. ServerAdmin admin@example.com
  4. DocumentRoot /var/www/html/roundcube
  5.  
  6. ErrorLog ${APACHE_LOG_DIR}/roundcube_error.log
  7. CustomLog ${APACHE_LOG_DIR}/roundcube_access.log combined
  8.  
  9. <Directory /var/www/html/roundcube>
  10. Options -Indexes
  11. AllowOverride All
  12. Order allow,deny
  13. allow from all
  14. </Directory>
  15. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement