apachectl restart warning document root

mohammad6006

Verified User
Joined
Aug 2, 2013
Messages
13
in log files and when apachectl restart show :

Warning: DocumentRoot [/home/test/domains/suspended/crm] does not exist
Warning: DocumentRoot [/home/test/domains/suspended/crm] does not exist


httpd.conf :
Code:
    ServerRoot "/etc/httpd"
    Listen 80
    
    #LoadModule dummy_module /usr/lib/apache/mod_dummy.so
    Include	/etc/httpd/conf/extra/httpd-phpmodules.conf
    
    User apache
    Group apache
    
    ServerAdmin admin@localhost
    DocumentRoot "/var/www/html"
    
    # Options and AllowOverrides
    Include conf/extra/httpd-directories.conf
    
    <IfModule dir_module>
        DirectoryIndex index.html index.htm index.shtml index.php index.php5 index.php4 index.php3 index.phtml index.cgi
    </IfModule>
    
    <FilesMatch "^\.ht">
        Order allow,deny
        Deny from all
        Satisfy All
    </FilesMatch>
    
    ErrorLog /var/log/httpd/error_log
    LogLevel warn
    
    <IfModule log_config_module>
        #replace %b with %O for more accurate logging
        <IfModule mod_logio.c>
          LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
          LogFormat "%h %l %u %t \"%r\" %>s %O" common
          LogFormat "%O %I" bytes
    
          LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
        </IfModule>
    
        CustomLog /var/log/httpd/access_log common
    </IfModule>
    
    <IfModule alias_module>
        # Include some DirectAdmin alias
        Include conf/extra/httpd-alias.conf
    </IfModule>
    
    DefaultType text/plain
    
    <IfModule mime_module>
        TypesConfig conf/mime.types
        AddType application/x-gzip .tgz
        AddEncoding x-compress .Z
        AddEncoding x-gzip .gz .tgz
        AddType application/x-compress .Z
        AddType application/x-gzip .gz .tgz
        AddHandler cgi-script .cgi
        AddHandler type-map var
        AddType text/html .shtml
        AddOutputFilter INCLUDES .shtml
    	AddType video/x-ms-asf .avi
    	AddType video/mpeg .mpg
    	AddType video/mpeg .mpeg
    	AddType video/quicktime .mov
    	AddType video/x-ms-wmv .wmv
    </IfModule>
    
    #EnableMMAP off
    #EnableSendfile off



i can not open nagios monitoring with url : serverip/nagios
404 not found
 
Back
Top