Skip to content

Commit 9c23d78

Browse files
committed
docs: use HTTPS where possible
Signed-off-by: Jonah Snider <[email protected]>
1 parent 3b7aa51 commit 9c23d78

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2018"
88
readme = "README.md"
99
default-run = "nu"
1010
repository = "https://github.com/nushell/nushell"
11-
homepage = "http://nushell.sh"
11+
homepage = "https://www.nushell.sh"
1212
documentation = "https://book.nushell.sh"
1313

1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

docs/docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ docker run -it .
4141
This image does not contain the common packages contained in the default tag and only contains the minimal packages needed to run `nu`. Unless you are working in an environment where only the `nu` image will be deployed and you have space constraints, it's highly recommended to use the alpine image if you aim for small image size. Only use this image if you really need **both** `glibc` and small image size.
4242

4343
### `nu:<version>-alpine`
44-
This image is based on the popular [Alpine Linux project](http://alpinelinux.org/), available in [the alpine official image][alpine]. Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general.
44+
This image is based on the popular [Alpine Linux project](https://alpinelinux.org/), available in [the alpine official image][alpine]. Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general.
4545

4646
This variant is highly recommended when final image size being as small as possible is desired. The main caveat to note is that it does use `musl` libc instead of `glibc` and friends, so certain software might run into issues depending on the depth of their libc requirements. However, most software doesn't have an issue with this, so this variant is usually a very safe choice. See [this Hacker News comment thread](https://news.ycombinator.com/item?id=10782897) for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images.
4747

@@ -104,7 +104,7 @@ ENTRYPOINT ["nu"]
104104
</details>
105105

106106
### `nu:<version>-<libc-variant>-busybox`
107-
This image is based on [Busybox](http://www.busybox.net/) which is a very good ingredient to craft space-efficient distributions. It combines tiny versions of many common UNIX utilities into a single small executable. It also provides replacements for most of the utilities you usually find in GNU fileutils, shellutils, etc. The utilities in BusyBox generally have fewer options than their full-featured GNU cousins; however, the options that are included provide the expected functionality and behave very much like their GNU counterparts. Basically, this image provides a fairly complete environment for any small or embedded system.
107+
This image is based on [Busybox](https://www.busybox.net/) which is a very good ingredient to craft space-efficient distributions. It combines tiny versions of many common UNIX utilities into a single small executable. It also provides replacements for most of the utilities you usually find in GNU fileutils, shellutils, etc. The utilities in BusyBox generally have fewer options than their full-featured GNU cousins; however, the options that are included provide the expected functionality and behave very much like their GNU counterparts. Basically, this image provides a fairly complete environment for any small or embedded system.
108108

109109
> Use this only if you need common utilities like `tar`, `awk`, and many more but don't want extra blob like nushell plugins and others.
110110
@@ -120,5 +120,5 @@ ENTRYPOINT ["nu"]
120120
```
121121
</details>
122122

123-
[musl]: http://www.musl-libc.org/
123+
[musl]: https://www.musl-libc.org/
124124
[alpine]: https://hub.docker.com/_/alpine/

src/commands/help.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Here are some tips to help you get started.
116116
* help commands - list all available commands
117117
* help <command name> - display help about a particular command
118118
119-
You can also learn more at http://book.nushell.sh"#;
119+
You can also learn more at https://book.nushell.sh"#;
120120

121121
let mut output_stream = VecDeque::new();
122122

0 commit comments

Comments
 (0)