• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

I need the Indexes option perminantly set.

A

alantone

Guest
I post images to my server for realtors and I don't want to have to create an index page for each folder. In order to have the server automatically create an index page I have been vi'ing into /etc/httpd/conf.d/zz010_psa_httpd.conf and setting "Options Indexes" see below:

<Directory "/var/www/vhosts">
AllowOverride All
Options SymLinksIfOwnerMatch Indexes
Order allow,deny
Allow from all
<IfModule sapi_apache2.c>
php_admin_flag engine off
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine off
</IfModule>
</Directory>

I save it, but then if the server reboots this option gets removed. Does anyone know how to perminently turn this "Indexes" option on?
 
you can create a .htaccess file in your document root with:

Options +Indexes

or you can use a vhost.conf in the conf directory of the domain.
 
Back
Top