Hello
I have created my ubuntu server, bought ssl certificate, installed it on server.
And after there was few difficulties When i’ve typed in browser my domain Without https it showed me blank page than i have found tutorial about how to redirect http to https and i have added to default-ssl.conf this
<VirtualHost default:80> RewriteEngine on ReWriteCond %{SERVER_PORT} !^443$ RewriteRule ^/?(.*) https://%{HTTP_HOST}/$1 [NC,R,L] </VirtualHost> <VirtualHost default:443> ServerAdmin admin@domain.com ServerName domain.com ServerAlias www.domain.com DocumentRoot /var/www/domain.com/public_html RewriteEngine on RewriteCond %{HTTP_HOST} !^(www.)?(.+) RewriteRule ^ https://%2%{REQUEST_URI} [R=301,L]
And now everything works perfect, except one, i have few subdomains api.domain.com and support.domain.com , when i type them they automatically redirect to https(but they should be http) and showing me mine main page of domain.com
How to do it right?
Thank You for all your help in advance
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.
Click below to sign up and get $100 of credit to try our products over 60 days!
Fixed
If anyone interested Just added in the same config file this
<VirtualHost default:80> ServerAdmin admin@domain.com ServerName api.domain.com ServerAlias www.api.domain.com DocumentRoot /var/www/domain.com/public_html/api </VirtualHost> <VirtualHost default:80> ServerAdmin admin@domain.com ServerName support.domain.com ServerAlias www.support.domain.com DocumentRoot /var/www/domain.com/public_html/Support </VirtualHost>
Fixed
If anyone interested Just added in the same config file this
<VirtualHost default:80> ServerAdmin admin@domain.com ServerName api.smmhouse.com ServerAlias www.api.domain.com DocumentRoot /var/www/domain.com/public_html/api </VirtualHost> <VirtualHost default:80> ServerAdmin admin@domain.com ServerName support.domain.com ServerAlias www.support.domain.com DocumentRoot /var/www/domain.com/public_html/Support </VirtualHost>