Configuration Overview
Directory Lister is customizable through configuration. You can configure Directory Lister in a few different ways.
The .env
File
.env
FileThis is the recommended method of configuring Directory Lister.
Most configuration changes are possible via a custom .env
file. This file defines environment variables and their value. To get started:
Copy
.env.example
to.env
Edit the configuration values in
.env
Your default .env
file should look something like this:
APP_DEBUG=false
APP_LANGUAGE=en
# FILES_PATH=
DISPLAY_READMES=true
READMES_FIRST=false
ZIP_DOWNLOADS=true
SORT_ORDER=type
REVERSE_SORT=false
See the App Config Reference for additional configuration options.
Hiding Files
By default Directory Lister will look for a .hidden
file in the app root directory (the same place as index.php
). If found, each line of this file will be used as a file matching pattern and every matched file/folder will be hidden from the directory listing.
Each line of the .hidden
file should contain a single file or path pattern with no end-of-line delimiter. A pattern matching a folder path will cause all files and folders within that folder to be hidden as well as the folder itself.
Analytics Script Injection
Directory Lister allows for including arbitrary analytics tracking script (e.g. from Google Analytics, Matomo Analytics, Umami Analytics or any other analytics service) to be included in the HTML output of your directory listing.
To inject your analytics tracking code into your page create a file named .analytics
in the base project directory (the same folder as index.php
) and place your analytics tracking script code into this file.
Icon Configuration
You can control your application icon mapping through the icon config file.
Reference the Icon Configuration for more information on configuring icons.
Advanced Configuration
More control can be achieved via the application config files located in app/config
. Here you have full control over each option and can even write full PHP code if desired. The application configs are broken up into separate files based on their use. Reference the individual config documentation for more information about individual application configuration options.
Take care when upgrading your Directory Lister installation as the files in app/config
may be overwritten if you copy/paste and replace all files.
See the Configuration Reference for more information about individual options.
Last updated
Was this helpful?