RESOLUTION
If you would like to enable directory indexing for all domains append the following block of text to the end of the httpd.conf file:<LocationMatch "^/.*$">
Options +Indexes
</LocationMatch>
If you would like to enable it per domain you should add these directives into needed files (for HTTP, HTTPS and subdomains accordingly):
HTTPD_VHOSTS_D/domain.tld/conf/vhost.conf
HTTPD_VHOSTS_D/domain.tld/conf/vhost_ssl.conf
HTTPD_VHOSTS_D/domain.tld/subdomain/conf/vhost.conf
Once the changes have been made, please, run the utility below for the changes to take effect and restart Apache service.
PRODUCT_ROOT_D/admin/sbin/websrvmng -v -a If you would like to enable directory indexing for some directory, for example HTTPD_VHOSTS_D/domain.tld/httpdocs/DIR_NAME you should add the following lines into appropriate vhost.conf:
<LocationMatch "^/DIR_NAME.*$">
Options +Indexes +SymLinksIfOwnerMatch
</LocationMatch>