LAMP: domain and subdomain on same server?

Status
Not open for further replies.

oguruma

Patron
Joined
Jan 2, 2016
Messages
226
I have a Ubuntu 18.04 VPS set up to host a few wordpress sites using the LAMP stack.

Currently hosting domain.com, sub1.domain.com, and sub2.domain.com on the same server.

In other words, I have the domain and the 2 subdomains of that domain all on the same server.

I have A records all pointing to the IP of that VPS.

The problem I am having is that when I enter sub1.domain.com or sub2.domain.com I get served the Wordpress site of domain.com instead...

I would assume that it's a problem with my virtualhost file, but I can't see anything wrong with it, myself. Virtualhost file is below. Obviously, I replaced sub1.domain.com with my actual domain and subdomain....




<Directory /var/www/html/sub1.domain.com/public_html>
Require all granted
</Directory>
<VirtualHost *:80>
ServerName sub1.domain.com
ServerAlias sub1.domain.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/sub1.domain.com/public_html


</VirtualHost>

<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com

ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/sub1.domain.com

# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn

ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined

# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
 

kdragon75

Wizard
Joined
Aug 7, 2016
Messages
2,457
<VirtualHost *:80>
Im not to sharp with Apache but to mea that reads <VirtulaHost ANYHTING:port 80>
try replacing the "*" with "sub1.domain.com"
 
Status
Not open for further replies.
Top