From 61ce5f91ba771a15d4b2c2df0541fea20c3fb4f2 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Fri, 17 Apr 2015 23:05:07 +0200 Subject: [PATCH] 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 --- docs/configuration.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 771d4e7df..6d3e0adf0 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -1198,8 +1198,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 @@ -1255,6 +1255,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.