Closed
Bug 1499584
Opened 7 years ago
Closed 7 years ago
`/docs/` not available via HTTPS
Categories
(Taskcluster :: Services, defect)
Taskcluster
Services
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 1477034
People
(Reporter: jugglinmike, Unassigned)
Details
The URL https://docs.taskcluster.net/docs/ is currently reporting a 404.
$ curl https://docs.taskcluster.net/docs/ --silent -o /dev/null -w "%{http_code}\n"
404
Although a URL which omit the trailing slash resolves correctly
$ curl https://docs.taskcluster.net/docs --silent -o /dev/null -w "%{http_code}\n"
200
...the site currently features the former version prominently [1], so this is
likely a bug. Unfortunately, I haven't been able to reproduce this locally:
$ curl http://localhost:8000/docs/ --silent -o /dev/null -w "%{http_code}\n"
200
Which first caused me to suspect some inauthenticity in my development
environment. However, insecure requests to the production server resolve as
intended:
$ curl http://docs.taskcluster.net/docs/ --silent -o /dev/null -w "%{http_code}\n"
301
So this may be related to the HTTPS configuration.
[1] https://github.com/taskcluster/taskcluster-docs/blob/e26949bc4424d34f1dc5a8651daf7931a59505ff/layout/navbar.pug#L9
Comment 1•7 years ago
|
||
This is surprisingly hard to fix, because of the obscure way our docs are generated. We have a project in progress to change that (to build the docs into taskcluster-web) which will address this and 100's of similar issues.
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → DUPLICATE
| Assignee | ||
Updated•7 years ago
|
Component: Documentation → Services
You need to log in
before you can comment on or make changes to this bug.
Description
•