I messed up my Apache config file, httpd.conf.
I followed this article, http://emresaglam.com/blog/1035, to try and find the original httpd.conf inside Install OS X Mountain Lion.app.
The article says that the Bom files ("Bill of Materials"), "describes what is in this pkg file and where they will be written to."
Install OS X Mountain Lion.app -> Contents\SharedSupport\InstallESD.dmg -> Packages\***.pkg -> Bom
However, the Bom files don't seem to be a complete listing. I extracted the contents of the Payload for Essentials.pkg and there was more to it then listed in its Bom.
Is there a better way to navigate and find the file I need from the installer, besides extracting the contents of each pkg file's Payload? Any tips or resources would be greatly appreciated!
Thanks!

pkgutil --files com.apple.pkg.Essentials | grep httpd.confdoes not print anything. – Harald Hanche-Olsen Dec 13 '12 at 17:39pkgutildoes. I found httpd.conf in BSD.pkg usingpkgutil --payload-files ... | grep httpd.conf. If you post your comment as an answer, I'll mark it as answered, thanks! Also, I'm curious where I can find the file you refer to in your comment,com.apple.pkg.Essentials. – flackend Dec 13 '12 at 18:49