Report this

What is the reason for this report?

Ubuntu 14.04, apache2 . HTTPS,Domain,Subdomain

Posted on September 27, 2014

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



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.

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>

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>

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.