my sftp/data is not secured can someone help me with this? or tag a related problem on the forums? thanks
Hi,
Each folder in pydio source has a default .htaccess file (ie: https://github.com/pydio/pydio-core/blob/develop/core/src/data/.htaccess) to prevent access from web.
- https://pydio.com/en/docs/kb/pydio-8/pydio-security-model
- make sure you have “Options FollowSymLinks MultiViews” in apache config
<Directory "/path/to/root/of/pydio" >
Options FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>!