So i created virtual host on my droplet and connect it with a domain. Also i add CNAME record (www @). But problem is that site.com point to correct folder on server var/www/sitename/public_html, and www.site.com pointing to var/www/html why?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
This comment has been deleted
This comment has been deleted
This comment has been deleted
This comment has been deleted
You need to configure your virtualhost to listen on www.site.com as well as site.com.
Under the ServerName site.com
line, add the following:
ServerAlias www.site.com
If you already have a ServerAlias directive, simply append www.site.com
to the line with a space between each alias:
ServerAlias site2.com ... www.site.com
Then restart Apache:
sudo service apache2 restart
There was a tipfeler in conf file.
can you post your site.conf file?