Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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