Website resolving on nameserver domain

Will W.

Registered
May 17, 2018
1
0
1
Texas
cPanel Access Level
Root Administrator
Hello,

I am unable to locate this in other threads or i am searching for it incorrectly.

my nameserver domain let say "ns1.nsdomain.com"
website domain is "anotherdomain.org" on same ip as nameserver

http://ns1.nsdomain.com resolves the website for http://anotherdomain.org.

besides moving the website to a different ip address. how would i keep my nameserver domains from resolving to another website located on the server.
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,258
463
Hello @Will W.,

You can follow the steps referenced below to control what shows up when accessing a domain name that points to the cPanel server but isn't configured with Apache (e.g. ns1.nsdomain.tld):

1. Navigate to WHM's Include Editor interface (WHM Home >> Service Configuration >> Apache Configuration >> Include Editor).

2. Select the Pre Virtual Host Include option.

3. Select the Apache version from the menu. We recommend that you select All Versions.

4. Enter the following text in the available text box:

Code:
<VirtualHost IPADDRESS:80>
  ServerName HOSTNAME
  DocumentRoot /usr/local/apache/htdocs
  ServerAdmin EMAIL
  <IfModule mod_suphp.c>
    suPHP_UserGroup nobody nobody
  </IfModule>
 </VirtualHost>

<VirtualHost IPADDRESS:443>
  ServerName HOSTNAME
  DocumentRoot /usr/local/apache/htdocs
  ServerAdmin EMAIL
  <IfModule mod_suphp.c>
    suPHP_UserGroup nobody nobody
  </IfModule>
    SSLEngine on
    SSLCertificateFile SSLCERTIFICATEFILE
    SSLCertificateKeyFile YOUR-SSLCERTIFICATEKEYFILE
 </VirtualHost>
Note:

This example uses the following values:
  • IPADDRESS represents the server's IP address.
  • HOSTNAME represents the domain name you want to setup (e.g. ns1.nsdomain.tld).
  • EMAIL represents your contact email address.
  • SSLCERTIFICATEFILE represents the full file path to your SSL certificate.
  • SSLCERTIFICATEKEYFILE represents the full file path to your SSL certificate's key.
5. Click Proceed
6. Click Update.

Additionally, note that you'd need to update the DocumentRoot values to reflect a directory with an index file with the content you want to appear or with an .htaccess file that denys access.

Thank you.