Jump to content

virtual host error


shehroz

Recommended Posts

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?
Link to comment
Share on other sites

[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 you@youremail.address
  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
Share on other sites

  • 4 weeks later...
Just change it to


VirtualHost xxX.xxx.xxx.xxx>
   ServerName domain.tld
   ServerAlias www.domain.tld
   ServerAdmin you@youremail.address
   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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.