[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] SSL question . .



Hi Rick,

> I would like to know how do i make a certain site only available to https
> connection and not http

Add this to the site's configuration in httpd.conf or where you find it
<location />
 SSLRequireSSL
</location>

If you don't know how to, the only other way is to use javascript to check
it (but that's not a very safe option, as any one can turn of javascript in
their browsers).

Jelmer