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.
Accepted Answer
So finally got it right. Now it’s working.
Changed
www CNAME demo.domain.com
to
demo.domain.com. A myIPaddress
And added .htaccess in directory
RewriteEngine on
# redirect to https www
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^(?:www\.)(domain\.com)$ [NC]
RewriteRule ^ https://www.%1%{REQUEST_URI} [R=301,L]
# redirect to http subdomain
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^((?!www).+\.demo.domain\.com)$ [NC]
RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
The following steps worked for me. 1: add virtual host like the following with chmod 664 and chown www-data:www-data
<VirtualHost *:80>
ServerAdmin youemail@sth.com
DocumentRoot /var/www/subdomain
ServerName subdomain.hashmatwaziri.com
ServerAlias www.subdomain.hashmatwaziri.com
<Directory /var/www/subdomain/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<IfModule mod_dir.c>
DirectoryIndex index.php index.pl index.cgi index.html index.xhtml index.htm
</IfModule>
RewriteEngine on
RewriteCond %{SERVER_NAME} =hashmatwaziri.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
2: sudo add-apt-repository ppa:certbot/certbot (add the repository)
3: sudo apt install python-certbot-apache (Install Certbot’s Apache package with apt)
4: type “certbot”
5: select the newly created virtual host
6: and you are all good to go. cheers
Did you enabled your VirtualHost? As I see, you created new file for subdomain VH, if you did it - you need to enable it using a2ensite:
- sudo a2ensite demo.domain.com
Make sure to restart after any change you do to the config:
- sudo systemctl restart apache2
Try to access subdomain again. If you still see wrong page, try clearing cache or going to Incognito mode.