Computer Tips - Apache: How can I include a bunch of config files from conf.d with Apache?

Date: 2017dec11 Update: 2025jul15 Product: Apache Q. Apache: How can I include a bunch of config files from conf.d with Apache? A. At the end of <apache-home>/conf/httpd.conf add.. In Apache less than version 2.3.6 to this:
Include conf.d/*.conf
In Apache greater than or equal to 2.3.6 do this:
IncludeOption conf.d/*.conf
Now make folder <apache-home>/conf.d and place myprogram.conf for each thing that needs it in there. A nice way of managing things.