Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
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.
first of all, your DNS is not really configured the right way… <br> <br>Look here: <br>http://s45.photobucket.com/user/hxt57/media/downsvn-dns_zps0f4f8fd0.jpg.html <br> <br>each domain is going to have the same setting, but different domain name so there is no issue, no worries. <br> <br>P.S, you don’t need the mail record as shown in the url provided though… <br> <br>now you can create each domain a vhost like this with different root path: <br> <br>server { <br> listen 80; <br> <br> server_name yourdomain.com; <br> <br> root /PATH/TO/WEBROOT; <br> <br> error_page 404 errors/404.html; <br> access_log logs/star.yourdomain.com.access.log; <br> <br> index index.php index.html index.htm; <br> <br> location ~* .(jpg|jpeg|gif|css|png|js|ico|html)$ { <br> access_log off; <br> expires max; <br> } <br> <br> location ~ /.ht { <br> deny all; <br> } <br>} <br> <br>check it out here: http://wiki.nginx.org/ServerBlockExample <br> <br>http://www.howtoforge.com/perfect-server-ubuntu-12.04-lts-nginx-bind-dovecot-ispconfig-3-p4