Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <VirtualHost *:443>
  2. Alias /web "/var/www/owncloud/"
  3. SSLEngine on
  4. SSLCompression Off
  5. SSLCertificateFile /etc/letsencrypt/live/cloud.overon.hu/cert.pem
  6. SSLCertificateKeyFile /etc/letsencrypt/live/cloud.overon.hu/privkey.pem
  7.  
  8. <Directory /var/www/owncloud/>
  9. Options +FollowSymlinks
  10. AllowOverride All
  11. <IfModule mod_dav.c>
  12. Dav off
  13. </IfModule>
  14.  
  15.  
  16. SetEnv HOME /var/www/owncloud
  17. SetEnv HTTP_HOME /var/www/owncloud
  18.  
  19. </Directory>
  20.  
  21. <Directory /var/www/html/>
  22. AllowOverride All
  23. </Directory>
  24. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement