mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
Part of #7593. * Refactor tests out of packaged module for apache plugin * Exclude pycache and .py[cod] * Change tests path in tox.ini
14 lines
288 B
Plaintext
14 lines
288 B
Plaintext
Alias /owncloud /usr/share/owncloud
|
|
|
|
<Directory /usr/share/owncloud/>
|
|
Options +FollowSymLinks
|
|
AllowOverride All
|
|
<IfVersion < 2.3>
|
|
order allow,deny
|
|
allow from all
|
|
</IfVersion>
|
|
<IfVersion >= 2.3>
|
|
Require all granted
|
|
</IfVersion>
|
|
</Directory>
|