Attempting to run three domains on VPS, one works, the other two show apache test page

74 views Asked by At

I have three domains that I'm pointing at one VPS.

One resides in /www/html/ while the other two have their own folder inside of /www/html/. The first of my domains works fine.

The other two, however, only land at the apache test page. I've commented out everything in conf.d/welcome.conf, yet I still get the test page.

Here's what I've got for httpd.conf

<VirtualHost 192.241.117.214:80>
ServerName tishu.org
ServerAlias www.tishu.org
DocumentRoot /var/www/html/
</VirtualHost>

<VirtualHost 192.241.117.2:80>
ServerName avrse.net
ServerAlias www.avrse.net
DocumentRoot /var/www/html/avrse
</VirtualHost>

<VirtualHost 192.241.117.3:80>
ServerName pureavarice.com
ServerAlias www.pureavarice.com
DocumentRoot /var/www/html/vera
</VirtualHost>

What am I doing wrong?

0

There are 0 answers