From 16de4540692ee03b92a0f29bcd8b8288ee148d43 Mon Sep 17 00:00:00 2001 From: Jehiah Czebotar Date: Tue, 25 Aug 2020 10:02:25 -0400 Subject: [PATCH] s/http/https --- ChangeLog.md | 6 +- README.md | 98 ++++++++++++++--------------- apps/nsqd/README.md | 2 +- apps/nsqlookupd/README.md | 2 +- nsqadmin/README.md | 2 +- nsqadmin/package.json | 2 +- nsqadmin/static/js/views/header.hbs | 2 +- nsqd/README.md | 2 +- nsqlookupd/README.md | 2 +- 9 files changed, 59 insertions(+), 59 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index f1ddfe0d4..829092916 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -510,8 +510,8 @@ When `nsqd` is configured with an `--auth-http-address` it will require clients command. The `AUTH` command body is opaque to `nsqd`, it simply passes it along to the configured auth daemon which responds with well formed JSON, indicating which topics/channels and properties on those entities are accessible to that client (rejecting the client if it accesses anything -prohibited). For more details, see [the spec](http://nsq.io/clients/tcp_protocol_spec.html) or [the -`nsqd` guide](http://nsq.io/components/nsqd.html#auth). +prohibited). For more details, see [the spec](https://nsq.io/clients/tcp_protocol_spec.html) or [the +`nsqd` guide](https://nsq.io/components/nsqd.html#auth). Additionally, we've improved performance in a few areas. First, we refactored in-flight handling in `nsqd` to reduce garbage creation and improve baseline performance 6%. End-to-end processing @@ -676,7 +676,7 @@ NOTE: we are now publishing additional binaries built against go1.2 The most prominent addition is the tracking of end-to-end message processing percentiles. This measures the amount of time it's taking from `PUB` to `FIN` per topic/channel. The percentiles are configurable and, because there is *some* overhead in collecting this data, it can be turned off -entirely. Please see [the section in the docs](http://nsq.io/components/nsqd.html) for +entirely. Please see [the section in the docs](https://nsq.io/components/nsqd.html) for implementation details. Additionally, the utility apps received comprehensive support for all configurable reader options diff --git a/README.md b/README.md index 50cfb26bf..063bb8a79 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@

- +

@@ -32,50 +32,50 @@ NOTE: master is our *development* branch and may not be stable at all times. ## In Production -   -   -   -   -   -
- -   -   -   -   -   -
- -   -   -   -   -   -
- -   -   -   -   -   -
- -   -   -   -   -   -
- -   -   -   -   -   -
+   +   +   +   +   +
+ +   +   +   +   +   +
+ +   +   +   +   +   +
+ +   +   +   +   +   +
+ +   +   +   +   +   +
+ +   +   +   +   +   +
   -   +   ## Code of Conduct @@ -89,14 +89,14 @@ maintainers ([Pierce Lopez][pierce_github]), and all our [contributors][contribu Logo created by Wolasi Konu ([@kisalow][wolasi_twitter]). -[protocol]: http://nsq.io/clients/tcp_protocol_spec.html -[installing]: http://nsq.io/deployment/installing.html -[docker_deployment]: http://nsq.io/deployment/docker.html +[protocol]: https://nsq.io/clients/tcp_protocol_spec.html +[installing]: https://nsq.io/deployment/installing.html +[docker_deployment]: https://nsq.io/deployment/docker.html [snakes_twitter]: https://twitter.com/imsnakes [jehiah_twitter]: https://twitter.com/jehiah [bitly]: https://bitly.com -[features_guarantees]: http://nsq.io/overview/features_and_guarantees.html +[features_guarantees]: https://nsq.io/overview/features_and_guarantees.html [contributors]: https://github.com/nsqio/nsq/graphs/contributors -[client_libraries]: http://nsq.io/clients/client_libraries.html +[client_libraries]: https://nsq.io/clients/client_libraries.html [wolasi_twitter]: https://twitter.com/kisalow [pierce_github]: https://github.com/ploxiln diff --git a/apps/nsqd/README.md b/apps/nsqd/README.md index 84d29bb11..f03bc3158 100644 --- a/apps/nsqd/README.md +++ b/apps/nsqd/README.md @@ -2,4 +2,4 @@ `nsqd` is the daemon that receives, queues, and delivers messages to clients. -Read the [docs](http://nsq.io/components/nsqd.html). +Read the [docs](https://nsq.io/components/nsqd.html). diff --git a/apps/nsqlookupd/README.md b/apps/nsqlookupd/README.md index 718a5691c..b3e76990f 100644 --- a/apps/nsqlookupd/README.md +++ b/apps/nsqlookupd/README.md @@ -3,4 +3,4 @@ `nsqlookupd` is the daemon that manages topology metadata and serves client requests to discover the location of topics at runtime. -Read the [docs](http://nsq.io/components/nsqlookupd.html). +Read the [docs](https://nsq.io/components/nsqlookupd.html). diff --git a/nsqadmin/README.md b/nsqadmin/README.md index 2f35a5176..729bd678a 100644 --- a/nsqadmin/README.md +++ b/nsqadmin/README.md @@ -3,7 +3,7 @@ `nsqadmin` is a Web UI to view aggregated cluster stats in realtime and perform various administrative tasks. -Read the [docs](http://nsq.io/components/nsqadmin.html) +Read the [docs](https://nsq.io/components/nsqadmin.html) ## Local Development diff --git a/nsqadmin/package.json b/nsqadmin/package.json index 51c85aa23..c2f7b804f 100644 --- a/nsqadmin/package.json +++ b/nsqadmin/package.json @@ -1,7 +1,7 @@ { "name": "nsqadmin", "version": "0.3.0", - "description": "operational dashboard for NSQ (http://nsq.io/)", + "description": "operational dashboard for NSQ (https://nsq.io/)", "repository": { "type": "git", "url": "" diff --git a/nsqadmin/static/js/views/header.hbs b/nsqadmin/static/js/views/header.hbs index 33206fb70..571f51f00 100644 --- a/nsqadmin/static/js/views/header.hbs +++ b/nsqadmin/static/js/views/header.hbs @@ -28,7 +28,7 @@ {{/if}} diff --git a/nsqd/README.md b/nsqd/README.md index 6231e46ba..a2becf5a2 100644 --- a/nsqd/README.md +++ b/nsqd/README.md @@ -2,4 +2,4 @@ `nsqd` is the daemon that receives, queues, and delivers messages to clients. -Read the [docs](http://nsq.io/components/nsqd.html) +Read the [docs](https://nsq.io/components/nsqd.html) diff --git a/nsqlookupd/README.md b/nsqlookupd/README.md index 83507842c..74e192048 100644 --- a/nsqlookupd/README.md +++ b/nsqlookupd/README.md @@ -3,4 +3,4 @@ `nsqlookupd` is the daemon that manages topology metadata and serves client requests to discover the location of topics at runtime. -Read the [docs](http://nsq.io/components/nsqlookupd.html) +Read the [docs](https://nsq.io/components/nsqlookupd.html)