I cannot include the list of directories on my apache web server. I tried to post various solutions, but not working. I just installed httpd 2.4.6 and enabled https using ssl.conf in /etc/httpd/conf.d/ssl.conf dir and trying to access https://server.example.com/ , but this is not a list dir. This is the config in ssl.conf
DocumentRoot "/home/userx/Downloads/"
ServerName server.example.com:443
Below is what is available in ssl.conf under the VirtualHost element. The files and the first elements of the directory were already there when I installed, I just added the directory to "/ home / userx / Downloads". I want to view the contents of / home / userx / Downloads when accessing the URL https://server.example.com/ . What am I missing here?
<Files ~ "\.(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
<Directory "/var/www/cgi-bin">
SSLOptions +StdEnvVars
</Directory>
<Directory "/home/userx/Downloads">
Options +Indexes
AllowOverride all
</Directory>