/etc/httpd/conf/ Look also under /etc/httpd/conf.d/ for additional per-package configurations. -Alan
Victor Subervi wrote:
So where does centos hide my httpd.conf file? TIA, V
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
And please strongly consider reviewing the relevant parts of the following: http://www.centos.org/docs/5/html/5.2/Deployment_Guide/
Alan Sparks wrote:
/etc/httpd/conf/ Look also under /etc/httpd/conf.d/ for additional per-package configurations. -Alan
Victor Subervi wrote:
So where does centos hide my httpd.conf file? TIA, V
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
/etc/httpd/conf/httpd.conf Yup. Thanks ;) V
On Fri, Nov 6, 2009 at 12:38 PM, Alan Sparks asparks@doublesparks.netwrote:
And please strongly consider reviewing the relevant parts of the following: http://www.centos.org/docs/5/html/5.2/Deployment_Guide/
Alan Sparks wrote:
/etc/httpd/conf/ Look also under /etc/httpd/conf.d/ for additional per-package configurations. -Alan
Victor Subervi wrote:
So where does centos hide my httpd.conf file? TIA, V
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
John R Pierce wrote:
Victor Subervi wrote:
/etc/httpd/conf/httpd.conf Yup. Thanks ;)
don't edit that master file if at all possible. instead, create a file in /etc/httpd/conf.d/?????.conf for each website, and put your site specific settings in there.
For site specific I agree, but I believe you have to edit that file to properly set up name based virtual hosting with multiple hosts, otherwise apache complains when starting. I think it is only a one or two line change. Then the configuration for hosts go in /etc/httpd/conf.d
Victor wrote:
So where does centos hide my httpd.conf file?
You might possibly consider rtfm. http://httpd.apache.org/docs/
mark
[root@pgprd01:~]# rpm -qa | grep httpd system-config-httpd-1.3.3.1-1.el5 httpd-2.2.3-11.el5.centos [root@pgprd01:~]# rpm -ql httpd | grep httpd.conf /etc/httpd/conf /etc/httpd/conf.d /etc/httpd/conf.d/README /etc/httpd/conf.d/proxy_ajp.conf /etc/httpd/conf.d/welcome.conf /etc/httpd/conf/httpd.conf /etc/httpd/conf/magic
Michael Schumacher wrote:
So where does centos hide my httpd.conf file? TIA, V
Ever tried
locate 'whateverIamllookingfor'
There are several parts that make up the configuration for Apache. They all reside under /etc/httpd/. The main file is /etc/httpd/conf/httpd.conf. It is a general purpose configuration file. But there are also package specific config files that configure specific things under /etc/httpd/conf.d/. Examples of the package specific configs is: php.conf, squirrelmail.conf, perl.conf, squid.conf