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.
I would recommend reviewing this tutorial which covers setting up Apache virtualhosts without webmin. You can use webmin to directly edit your configuration files. If you can share your current virutalhost configuration for the two domains I’d be happy to help you identify the problem.
Thanks for your speedy response! I have virtualhost config below:
<VirtualHost xxx.xx.xx.x> DocumentRoot /var/www/html/capriequip ServerName capriequipment.com ServerAlias *.capriequipment.com <Directory “/var/www/html/capriequip”> allow from all Options None Require all granted </Directory> </VirtualHost> <VirtualHost xxx.xx.xx.x> DocumentRoot “/var/www/html/alexlyon” ServerName alexlyon.biz ServerAlias *.alexlyon.biz <Directory “/var/www/html/alexlyon”> allow from all Options None Require all granted </Directory> </VirtualHost>
I have changed the IP address…
The first domain is www.capriequipment.com and the second is www.alexlyon.biz. The second loads the first domain when viewed in a webpage
Thanks in advance!