You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 line
556B

  1. <VirtualHost *:80>
  2. DocumentRoot /var/www/nextcloud
  3. ServerName {{inventory_hostname}}
  4. <Directory /var/www/nextcloud/>
  5. Options +FollowSymlinks
  6. AllowOverride All
  7. <IfModule mod_dav.c>
  8. Dav off
  9. </IfModule>
  10. SetEnv HOME /var/www/nextcloud
  11. SetEnv HTTP_HOME /var/www/nextcloud
  12. </Directory>
  13. ErrorLog ${APACHE_LOG_DIR}/error.log
  14. CustomLog ${APACHE_LOG_DIR}/access.log combined
  15. </VirtualHost>