Configtool cert expired
-
@chriss Thanks, I've found the old link on 8 pages in the wiki; I'll update them.
Ian
-
Cool... I found the source of the confusion, too. I have a bookmark for it. So FF shows me the bookmark when I start typing "configtool"... So we both have a "bug"here.
-
May I ask which the correct URL is?
I found https://configtool.reprapfirmware.org/Start on https://duet3d.dozuki.com/Wiki/SD_Card
Which is wrong, isn't it?
Cheers, Chriss
-
@chriss https://configtool.reprapfirmware.org/Start is the correct address, configurator... is the old one. It forwards to configtool, but it still needs an up-to-date certificate if you land on the configurator... page, even if it's just forwarding to configtool. If you got to https://www.reprapfirmware.org/ and click on config tool, you'll see it goes to https://configtool.reprapfirmware.org/
Checking with an SSL certificate checker, configurator... has lapsed, but configtool... is still valid. Are you still getting a certificate warning?
Ian
-
@droftarts said in Configtool cert expired:
Thanks for the clarification. I simply lost a bit track about all of that. Clear now... "configurator" - "configtool" are just to similar words for my filter.
Checking with an SSL certificate checker, configurator... has lapsed, but configtool... is still valid. Are you still getting a certificate warning?
Not on the configtool.
But there is a problem with the redirect at:
https://configurator.reprapfirmware.orgThere is a "/" missing.
You will get redirected to:
https://configtool.reprapfirmware.orgStart/
When you try to reach:
https://configurator.reprapfirmware.org/StartI guess that you miss a "/" in front of the "$1" in the RewriteRule.
Cheers, Chriss
-
@chriss the redirect works for me on chrome.
just the certificate thats expired -
It has nothing to do with the browser the apache is misbehaving:
curl -k https://configurator.reprapfirmware.org/Start <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>301 Moved Permanently</title> </head><body> <h1>Moved Permanently</h1> <p>The document has moved <a href="https://configtool.reprapfirmware.orgStart">here</a>.</p> <hr> <address>Apache/2.4.38 (Debian) Server at configurator.reprapfirmware.org Port 443</address> </body></html>
Line one shows that I try to reach "/Start", line 7 shows that the redirect points to "...orgStart". So the "/" is gone.
You need a "/" before "$1" in the apache config.
And you may want to set:
ServerTokens Prod
You may not want to tell everybody your Apache version and the OS where it is hosted on.
Cheers, Chriss
-
@chriss It's only a problem if your saved link is
https://configurator.reprapfirmware.org/Start
; the 'Start' is put in automatically on the configtool page, and I guess it was when the address was configurator, so that's what was saved when you bookmarked the link. If you use the configurator link without Start (with or without trailing /), it works fine. I don't think it's linked anywhere in the wiki with the 'Start' on the end, so it's only a bookmark issue. I'll see if the redirect can be updated.Ian
-
@droftarts said in Configtool cert expired:
@chriss It's only a problem if your saved link is
https://configurator.reprapfirmware.org/Start
;Will all respect, I do not agree.
Your redirect rule misbehaves, here is no Bookmark or whatever involved:
(look t line 1 and 7)[chriss@leela ~]$ curl -k https://configurator.reprapfirmware.org/BlueSmurf42 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>301 Moved Permanently</title> </head><body> <h1>Moved Permanently</h1> <p>The document has moved <a href="https://configtool.reprapfirmware.orgBlueSmurf42">here</a>.</p> <hr> <address>Apache/2.4.38 (Debian) Server at configurator.reprapfirmware.org Port 443</address> </body></html> [chriss@leela ~]$
I understand that you do not need the /Start any more on the old hostname an you do have a link to /Start any more. But you should redirect correctly when you redirect the uri and not the hostname only.
But this is not my problem at the end...
Cheers, Chriss
-
Thanks, both the expired certificate and the redirect are now fixed. For the latter it may be necessary to wait a few days or to clear the browser cache once.