I'm installing 3rd party software that requires that I add a few lines of code to the httpd.conf for my domain. In reading through my main httpd.conf in /usr/local/psa/apache/conf I saw that it refers to an Include:
QUOTE
### Section 3: Virtual Hosts
Include conf/httpd.include
Include conf/httpd.include
I assumed this to mean that if I create a document called httpd.include and put in the code required by the software, the server would first read
/usr/local/psa/apache/conf/httpd.conf
for general config settings, then read
/usr/local/psa/home/vhosts/mydomain.com/httpd.include
for domain-specific config settings.
I did exactly that, but to no avail. Does the httpd.include file/directory require certain permission settings? am i going about this totally wrong? Should I just put the required code in the main httpd.conf file, since I'm only running one domain anyways? Many thanks in advance for any suggestions!