4

I have a folder with files and folders inside it and I am running Apache 2.4 on Debian Jessie. Everything is chmoded 755 and chowned by www-data.

I have enabled Directory Indexing with Options +Indexes and also with Options Indexes FollowSymlinks MultiViews from the config of my VirtualHost.

I have no IndexIgnore directive in the apache2.conf

When I access the folder from HTTP, Apache only shows the files but not the folders.

I'd like to show the folder links as well. How can I achieve that?

Hans Z.
  • 50,496
  • 12
  • 102
  • 115
Valentin Mercier
  • 5,256
  • 3
  • 26
  • 50

1 Answers1

4

Looks like mod_auth_openidc did not want Apache to list folders for some reason. I overrode that with:

IndexOptions +ShowForbidden
Valentin Mercier
  • 5,256
  • 3
  • 26
  • 50