• Forum has been upgraded, all links, images, etc are as they were. Please see Official Announcements for more information

SSL server certificate not valid for www.darkcointalk.org!

Status
Not open for further replies.

mahowi

Member
Is there a new SSL certificate for DarkcoinTalk? I got this error right now when loading the forum:
darkcointalk_error.PNG


The certificate only seems to be valid for https://darkcointalk.org but not https://www.darkcointalk.org.
 
WWW. does not work. Just issued a new cert a minute ago to try and take care of Mobile Chrome.

Drop the "www." for now. I'll update the server to do it automatically.

The cert is only valid for "DarkcoinTalk.org" Using "wwwDarkcoinTalk.org" will not work.

Didn't realize the new certificate wouldn't include the "www" as well. Most of the time they do. I'll have to get another new certificate with both www and // just to be able to redirect while using https.

Or I could set up the connection for "www" to be http only and then redirect to "https://" without the www.
It'll be fixed.
 
Last edited by a moderator:
Just setup a global rewrite rule as suggested here: http://no-www.org/
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
 
Just setup a global rewrite rule as suggested here: http://no-www.org/
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

Not able to. It first needs to accept an unsecure connection at "www" first. Since it is redirected to https, it doesn't allow a rewrite.
I would first have to allow an unsecure connection with "www" I've already contacted the issuer. I'll issue a new certificate that accepts both www and non-www then issue the rewrite to drop the www.
Thanks for the feedback.

Edit: It's easier to just reissue a new certificate than to change the configuration to allow an unsecure.

Edit edit: http://stackoverflow.com/questions/...-to-non-www-and-http-to-www/10726167#10726167
 
Last edited by a moderator:
Issued new certificate. Fixed.

Edit: Seems that there were some issues affecting macintosh users. Sorry about that! Everything should be working for you as well now. If not, please post here or pm me on bitcointalk if you are not able to. Same username: Propulsion.

Thanks and sorry for the inconvenience!
 
Last edited by a moderator:
Status
Not open for further replies.
Back
Top