secure login?

For questions, special requests, or any complaints concerning the Descent BB.

Moderators: Krom, Lothar, Richard Cranium, KoolBear

Post Reply
User avatar
Burlyman
DBB Admiral
DBB Admiral
Posts: 1275
Joined: Sun Oct 16, 2005 5:47 pm
Location: right behind you

secure login?

Post by Burlyman »

any chance of getting a secure login? :3
--Neo, the fourth greatest pilot in the universe
User avatar
Krom
DBB Database Master
DBB Database Master
Posts: 16042
Joined: Sun Nov 29, 1998 3:01 am
Location: Camping the energy center. BTW, did you know you can have up to 100 characters in this location box?
Contact:

Re: secure login?

Post by Krom »

Its possible, the hosting provider for the DBB sent out an email recently about their plans to soon supply free basic SSL certificates for all customers so I'm hoping I'll be able to set that up sometime in the next few months.
User avatar
Krom
DBB Database Master
DBB Database Master
Posts: 16042
Joined: Sun Nov 29, 1998 3:01 am
Location: Camping the energy center. BTW, did you know you can have up to 100 characters in this location box?
Contact:

Re: secure login?

Post by Krom »

You can now use SSL to browse and or login to the DBB, update your bookmarks as necessary ( change http://www.descentbb.net to https://www.descentbb.net ).
User avatar
Tunnelcat
DBB Grand Master
DBB Grand Master
Posts: 13309
Joined: Sat Mar 24, 2007 12:32 pm
Location: Pacific Northwest, U.S.A.

Re: secure login?

Post by Tunnelcat »

Thanks Krom. I was getting tired of Firefox nagging me every time I logged in.
Cat (n.) A bipolar creature which would as soon gouge your eyes out as it would cuddle.
User avatar
Vander
DBB Alumni
DBB Alumni
Posts: 3213
Joined: Thu Nov 05, 1998 12:01 pm

Re: secure login?

Post by Vander »

Thanks, Krom.
User avatar
vision
DBB Material Defender
DBB Material Defender
Posts: 4336
Joined: Thu Feb 18, 2010 1:54 pm
Location: Mars

Re: secure login?

Post by vision »

Nice! Does the server use Apache? You need a ModRewrite expression for auto redirect? I can probably write one.

For all users I would suggest installing the browser plugin HTTPS Everywhere.
User avatar
Jeff250
DBB Master
DBB Master
Posts: 6514
Joined: Sun Sep 05, 1999 2:01 am
Location: ❄️❄️❄️

Re: secure login?

Post by Jeff250 »

Nice, and it looks like there is a 301 redirect now to the https site.
User avatar
Krom
DBB Database Master
DBB Database Master
Posts: 16042
Joined: Sun Nov 29, 1998 3:01 am
Location: Camping the energy center. BTW, did you know you can have up to 100 characters in this location box?
Contact:

Re: secure login?

Post by Krom »

Yes, I added that in last weekend to force all traffic over because the cookie won't let you login otherwise.

For future reference:

Code: Select all

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*) https://%{HTTP_HOST}/$1 [NC,R=301,L]
Post Reply