Jump to content

virtual host error


shehroz

Recommended Posts

[quote]
[quote]
i have added below code to httpd.conf, but i could not restart the server. it says error.

NameVirtualHost 111.22.33.44

    <VirtualHost 111.22.33.44>
    ServerName www.domain.tld
    ServerPath /domain
    DocumentRoot /web/domain
    </VirtualHost>

what is my error in this code?
[/quote]

It should look something like

NamedVirtualHost your IP address

<VirtualHost xxX.xxx.xxx.xxx>
  ServerName domain.tld
  ServerAlias www.domain.tld
  ServerAdmin [email protected]
  DocumentRoot /path/to/your/web/files
    <Directory /path/to/your/web/files>
        Order Allow,deny
    </Directory>
  </VirtualHost>


Do not forget that the server will have to be restarted after making any changes to the httpd.conf file
Link to comment
https://forums.phpfreaks.com/topic/17071-virtual-host-error/#findComment-73382
Share on other sites

  • 4 weeks later...
Just change it to


VirtualHost xxX.xxx.xxx.xxx>
   ServerName domain.tld
   ServerAlias www.domain.tld
   ServerAdmin [email protected]
   DocumentRoot /path/to/your/web/files
     <Directory /path/to/your/web/files>
        Order Allow,deny
     </Directory>
  </VirtualHost>

BTW the xxx arent kisses thats your local ip address
Link to comment
https://forums.phpfreaks.com/topic/17071-virtual-host-error/#findComment-86025
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.