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

Date: 2017dec11 Product: Apache Q. 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.. Apache < 2.3.6
Include conf.d/*.conf
Apache >= 2.3.6
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.