Doimain pointer not working

webone

Verified User
Joined
Jan 17, 2004
Messages
61
Hi,

I had a domain name "bannersandcovers.com" running on my server with a dedicated IP address and an SSL cert. I deleted the user "bannersandcovers.com" and removed the associated IP address from the IP pool and attempted to add a domain pointer to the servers domain name "fdserve.com".

i.e. bannerandcovers.com -----> fdserve.com

I restarted httpd and all I get is a "page not found" error.

I have 3 other domain pointers pointing to fdserve.com without any trouble. Any ideas why this one isn't working?

Looks like it's been set up correctly? I can't see why it isn't working:

# Auto generated apache config file by DirectAdmin version 1.24.2
# Modifying this file is not recommended as any changes you make will be
# overwritten when the user makes any changes to his/her website

# Frontpage requires these parameters in every httpd.conf file or else
# it won't work.
Port 80
ServerRoot /etc/httpd


<VirtualHost 67.19.117.218:80>


ServerName www.fdserve.com
ServerAlias www.fdserve.com fdserve.com
ServerAdmin [email protected]
DocumentRoot /home/admin/domains/fdserve.com/public_html
ScriptAlias /cgi-bin/ /home/admin/domains/fdserve.com/public_html/cgi-bin/



User admin
Group admin
CustomLog /var/log/httpd/domains/fdserve.com.bytes bytes
CustomLog /var/log/httpd/domains/fdserve.com.log combined
ErrorLog /var/log/httpd/domains/fdserve.com.error.log

<Directory /home/admin/domains/fdserve.com/public_html>
Options +Includes -Indexes
php_admin_flag engine ON
php_admin_flag safe_mode OFF
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f [email protected]'
</Directory>



#php_admin_value open_basedir /home/admin/:/tmp/:/var/www/:/usr/local/lib/php/:/etc/virtual/

</VirtualHost>


<VirtualHost 67.19.117.218:443>

SSLEngine on
SSLCertificateFile /etc/httpd/conf/ssl.crt/server.crt
SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.key
SSLCACertificateFile /usr/local/directadmin/data/users/admin/domains/fdserve.com.cacert

ServerName www.fdserve.com
ServerAlias www.fdserve.com fdserve.com
ServerAdmin [email protected]
DocumentRoot /home/admin/domains/fdserve.com/private_html
ScriptAlias /cgi-bin/ /home/admin/domains/fdserve.com/public_html/cgi-bin/



User admin
Group admin
CustomLog /var/log/httpd/domains/fdserve.com.bytes bytes
CustomLog /var/log/httpd/domains/fdserve.com.log combined
ErrorLog /var/log/httpd/domains/fdserve.com.error.log

<Directory /home/admin/domains/fdserve.com/private_html>
Options +Includes -Indexes
php_admin_flag engine ON
php_admin_flag safe_mode OFF
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f [email protected]'
</Directory>



#php_admin_value open_basedir /home/admin/:/tmp/:/var/www/:/usr/local/lib/php/:/etc/virtual/

</VirtualHost>
<VirtualHost 67.19.117.218:80>
ServerName bannersandcovers.com
ServerAlias bannersandcovers.com www.bannersandcovers.com
Redirect / http://www.fdserve.com/
User admin
Group admin
</VirtualHost>

<VirtualHost 67.19.117.218:80>
ServerName fawcett-douse.co.uk
ServerAlias fawcett-douse.co.uk www.fawcett-douse.co.uk
Redirect / http://www.fdserve.com/
User admin
Group admin
</VirtualHost>

<VirtualHost 67.19.117.218:80>
ServerName fawcett-douse.com
ServerAlias fawcett-douse.com www.fawcett-douse.com
Redirect / http://www.fdserve.com/
User admin
Group admin
</VirtualHost>

<VirtualHost 67.19.117.218:80>
ServerName initialdesignuk.com
ServerAlias initialdesignuk.com www.initialdesignuk.com
Redirect / http://www.fdserve.com/
User admin
Group admin
</VirtualHost>

Thanks in advance for any help!
 
Seems to be working now. I didn't do anything further! Maybe magic?

Thanks for all who viewed anyway :-)
 
Back
Top