0
votes

I have installed Web MO on Ubuntu 12.04 , I successfully complete the step given in link Web MO installation

But when I click on the URL specified at the end of setup process it shows as 404 NOT FOUND error

So I start configure the Apache Web Server Steps for configuring Web Server

as mentioned in web server configuration
cd /etc/httpd/conf not found in /etc folder

in /etc folder there exist an apache2.conf file and httpd.conf file , but httpd.conf file is empty where apache2.conf file is not.

I want to edit some lines in httpd.conf how can I do these , is there is any way to get contents in httpd.conf file

Thanks in Advance....

1
Are you aware about the differences between httpd and apache2? Because Ubuntu doesn't use httpd. - luukvhoudt
then how can I edit the details in httpd.conf file as given over here webmo.net/support/fedoracore4.html#apache_conf - 121kk
Basically /etc/httpd/conf/httpd.conf is the same as /etc/apache2/apache2.conf on Ubuntu. - luukvhoudt
Thanks for your Response @Fleuv but i need to edit thses on httpd.conf file ., so from where I can make changes on it <IfModule mod_userdir.c> section Comment the line UserDir disable Uncomment the line UserDir public_html Uncomment the line AddHandler cgi-script .cgi Add the lines (to bottom of file) <Directory /home/*/public_html/cgi-bin> #Enable cgi scripts in user directories Options ExecCGI </Directory>webmo.net/support/fedoracore4.html#apache_conf - 121kk

1 Answers

0
votes

To find your server config file. You can use the following command for httpd, apaceh2 and apachectl (and maybe even more):

"apache name" -V | grep SERVER_CONFIG_FILE

so for apache2 it will be

apache2 -V | grep SERVER_CONFIG_FILE