I have domain, pointed to my VPS. I made VH in apache to serve simple index.htm file to check if everything works fine.
Unfortunatelly something is wrong because page is not found(http://zoofi.me).
I added VH via some tutorial that i found and it looks like this:
GNU nano 5.4 /etc/apache2/sites-available/zoofi.me.conf
<VirtualHost *:80>
ServerAdmin admin@zoofi.me
ServerName zoofi.me
ServerAlias www.zoofi.me
DocumentRoot /var/www/zoofi.me
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Then add domain to etc/hosts:
GNU nano 5.4 /etc/hosts
127.0.0.1 localhost localhost.localdomain
::1 localhost localhost.localdomain
185.180.204.163 kvm49444605
185.180.204.163 zoofi.me www.zoofi.me
and perform reload.
Now, when I point to domain http://zoofi.me page is not found, but on http://185.180.204.163/ instead on Debian test page I receive index.html which should belong to zoofi.me.
Something is missing in this configuration? I you need more info - ask, I will deliver what is necessary.
Thanks for your time.