diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-06-27 21:30:38 +0200 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2024-06-28 20:53:04 +0200 |
commit | 6298e41f62efb4445f8f4c7532c9e08e31c4225e (patch) | |
tree | f2435f5e5d20de2588ed762b8ce3fbfca271ac17 | |
parent | fix(peertube): Ensure that the nginx reverse proxy works (diff) | |
download | nixos-server-6298e41f62efb4445f8f4c7532c9e08e31c4225e.tar.gz nixos-server-6298e41f62efb4445f8f4c7532c9e08e31c4225e.zip |
docs(password): Add documentation on the creation of new service passwords
-rw-r--r-- | notes/passwords.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/notes/passwords.md b/notes/passwords.md new file mode 100644 index 0000000..a26bc3e --- /dev/null +++ b/notes/passwords.md @@ -0,0 +1,6 @@ +# Passwords +These are created by running (and leaving everything to the default values, as we assume +they are sound): +```sh +openssl rand -hex 64 | mkpasswd --password-fd=0 | wl-copy +``` |