Hi Hugo,
I have Hiawatha reverse proxy in front of Apache.
In Apache, we only accept https request.. So I set my Hiawatha VirtualHost like this
VirtualHost {
Hostname = www.mydomain.co.uk, mydomain.co.uk
WebsiteRoot = /var/www/empty
RequireTLS = yes,31536000
TLScertFile = /usr/local/etc/hiawatha/ssl/mydomain.co.uk.key
ExecuteCGI = no
PreventXSS = yes
PreventCSRF = yes
PreventSQLi = yes
RandomHeader = 512
ReverseProxy .* https://91.203.xx.xxx:443 30 keep-alive
AccessLogfile = /var/log/hiawatha/mydomain.access.log
ErrorLogfile = /var/log/hiawatha/mydomain.error.log
}
When I go to mydomain.co.uk on http, I get message 'This page cannot be found'
WHen I go to mydomain.co.uk via https, I have no problem accessing the site.
Also nothing get log in /var/log/hiawatha/mydomain.error.log.
I have 9 other sites on the proxy all runing ok with the error login and RequireTLS option.
I only have problem with this one.
Any sugestion ?
Fred