docs: drop newlines in URLs to avoid 404
The docs as available at https://github.com/docker/distribution/blob/master/docs/configuration.md result in 404 errors: https://github.com/docker/distribution/blob/master/cmd/registry/%0Aconfig.yml http://docs.aws.amazon.com/AWSSecurityCredentials/1.0/%0AAboutAWSCredentials.html#KeyPairs instead of pointing to the correct ones, being: https://github.com/docker/distribution/blob/master/cmd/registry/config.yml http://docs.aws.amazon.com/AWSSecurityCredentials/1.0/AboutAWSCredentials.html#KeyPairs So avoid the newlines in the corresponding source files. Signed-off-by: Michael Prokop <mika@grml.org>
This commit is contained in:
parent
b46949acc3
commit
a61ba68bda
1 changed files with 4 additions and 4 deletions
|
@ -1164,8 +1164,8 @@ The above configures the registry instance to run on port `5000`, binding to
|
|||
verbose.
|
||||
|
||||
A similar simple configuration is available at
|
||||
[config.yml](https://github.com/docker/distribution/blob/master/cmd/registry/
|
||||
config.yml). Both are generally useful for local development.
|
||||
[config.yml](https://github.com/docker/distribution/blob/master/cmd/registry/config.yml).
|
||||
Both are generally useful for local development.
|
||||
|
||||
|
||||
## Example: Middleware configuration
|
||||
|
@ -1221,6 +1221,6 @@ middleware:
|
|||
|
||||
|
||||
>**Note**: Cloudfront keys exist separately to other AWS keys. See
|
||||
>[the documentation on AWS credentials](http://docs.aws.amazon.com/AWSSecurityCredentials/1.0/
|
||||
>AboutAWSCredentials.html#KeyPairs) for more information.
|
||||
>[the documentation on AWS credentials](http://docs.aws.amazon.com/AWSSecurityCredentials/1.0/AboutAWSCredentials.html#KeyPairs)
|
||||
>for more information.
|
||||
|
||||
|
|
Loading…
Reference in a new issue