I'm looking at a CentOS 6.5 server with a webframework installed that has been added to over the years by many. There are what looks like 5 active .conf files in /conf, including httpd.conf.
In httpd.conf the include reads
Include conf.d/*.conf
and that grabs all the files in that directory, but without any specific order applied that I'm aware of, and so what about the /conf (no .d) directory?
Is there a setting that states the load order or are they just taken from a-z?
I'm not the server admin, I'm a developer and the problem lies in the paths for uploading files to a /Temp dir, where I have checked that the path specified is correct for the files I myself am concerned with.
So, the 1st question is:
Does Apache load everything from /conf or is there a list specified somewhere?
The 2nd question would be:
In what order does Apache load the files, alphabetically?
Lastly:
Does a file that does not end in .conf get included? For example if I name something myconfig.conf.old will Apache skip it?