How to serve a subdomain and the domain on a single django-cms? [duplicate]

Solution 1:

What needs to be done with Apache httpd.conf?

<virtualhost *:80>
  ServerName one.example.com
....
</virtualhost>
<virtualhost *:80>
  ServerName two.example.com
....
</virtualhost>

ServerName within the Apache config is what's used to identify and run name-based hosts. You can read more about that here

In regards to the Django-CMS, you'd need to read their documentation as they have a specific setup for hosting multiple sites.