configuration

Posted by: 
Dominique De Cooman

This post will give you a list what to check when you go live with a drupal 7 website and how you can control it and automate it. You need to check this go live checklist each time you keep integrating new stuff during deployment to test if everything is still working. To save time this task can be automated.

Posted by: 
Dominique De Cooman

Go to windows host file (C:WindowsSystem32driversetchosts) and add :
Or on linux go to /etc/hosts and add
127.0.0.1 name_of_your_host

Go to the httpd.conf file in appache and add :

NameVirtualHost *:80
<VirtualHost *:80>
  ServerName name_of_your_host
  DocumentRoot "C:wampwwwname_of_your_host"  //or whatever the path to your host is
</VirtualHost>

Subscribe to configuration