• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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