mirror of
https://github.com/certbot/certbot.git
synced 2026-03-01 04:40:23 -05:00
Part of #7593. * Refactor tests out of packaged module for apache plugin * Exclude pycache and .py[cod] * Change tests path in tox.ini
13 lines
288 B
Text
13 lines
288 B
Text
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>
|