/usr/share/kopano-webapp/server/.htaccess is in kopano-webapp-common 3.4.6+dfsg1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | # The files in this directory and below should not be accessible to the outer world
# because that could introduce security vulnerabilities
# TODO: It would even be safer to move this directory above the web root
<IfVersion < 2.4>
Deny from all
</IfVersion>
<IfVersion >= 2.4>
<RequireAll>
Require all denied
</RequireAll>
</IfVersion>
|