Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

24 lines
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>