Sorry for the long title, but I have no idea about what else to put. My problem is exactly that. If I type www.mydomain.com the right page is displayed, if I type the IP XXX.XX.XXX.XX, I get apache's default page.
my VirtualHost file is:
NameVirtualHost *:443
<VirtualHost *:443>
ServerAdmin myname@mydomain.com
DocumentRoot /home/user/site/rails-webpage/public
SSLEngine on
SSLCertificateFile /home/user/doc/www_desmangeo_it.crt
SSLCertificateKeyFile /home/user/doc/desmangeo.key
SSLCertificateChainFile /home/user/doc/AddTrustExternalCARoot.crt
<Directory /home/user/site/rails-webpage/public>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Thanks to the comment given by Ray I noticed that if I make the IP request using https, I get to the right page. So it seems I'm not "redirecting the views at port 80". I mean, when I tried to do it using port 80 I got a SSL error. So I need to use port 443. How do I tell the server to "switch" to port 443?
[EDIT] So I loaded the rewrite module using
sudo a2enmod rewrite
and added
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
at the beggining of the file where my virtualhost is. Nothing.
VirtualHostdirective says port 443, which is used only for HTTPS, not HTTP. – Barmar Jan 21 at 17:01RewriteRuleto redirect people to the HTTPS version – Pekka 웃 Jan 21 at 17:15