I have a https domain (https://wpqa.net) and I’d trying to add a subdomain demo.wpqa.net.
I think I’m lost somewhere as my subdomain is now pointing to the main domain, that is subdomain is having the same content as the main.
My /etc/apache2/sites-enabled/default-ssl.conf is as follow
<IfModule mod_ssl.c>
<VirtualHost *:80>
ServerAdmin webmaster@WPQA
DocumentRoot /var/www/demo
Servername demo.wpqa.net
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<VirtualHost *:443>
ServerAdmin webmaster@WPQA
DocumentRoot /var/www
Servername 104.131.35.241
ServerAlias WPQA www.WPQA
Not too sure if my config is right.
Any input is greatly appreciated.
Thanks!
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.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
First question: do you have NameVirtualhost enabled? I’m guessing this is ubuntu, so it should be. This means that you’ll want to modify your SSL domain to this:
<IfModule mod_ssl.c> <VirtualHost *:443> ServerAdmin webmaster@WPQA ServerName wpqa.net ServerAlias www.wpqa.net DocumentRoot /var/www Servername 104.131.35.241 ServerAlias WPQA www.WPQA