• We value your experience with Plesk during 2025
    Plesk strives to perform even better in 2026. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2025.
    Please take this short survey:

    https://survey.webpros.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