I have a virtual host which has access to a directory outside of its document root. In the config for this host I specify the directory directive to allow access to this directory.
<Directory /path/to/shared/>
Options -Indexes
AllowOverride All
Order allow,deny
allow from all
</Directory>
The kind of files in this directory are things like images, ssi, facebook apps and some php scripts.
My question is, is this directive secure enough or do i need to add anything else?
Also, what is the ideal permissions for /shared
Thanks in anticipation