Any *.conf file in /etc/httpd/conf.d is essentially part of httpd.conf. Those files get included as part of the configuration via this line in httpd.conf:
- Code: Select all
Include conf.d/*.conf
It's been that way for quite some time now and really makes things a lot neater by modularizing the config file. All an app such as phpMyAdmin has to do is include a separate *.conf file with it's customizations into that directory rather than having to worry about modifying the existing httpd.conf file.