[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] SSL question . .
- Subject: Re: [cobalt-users] SSL question . .
- From: "Jelmer Jellema" <cobalt@xxxxxxxxxxxxxxx>
- Date: Wed Jun 12 04:02:01 2002
- Organization: Spin in het Web (www.spininhetweb.nl)
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
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