summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-06-27 21:30:38 +0200
committerSilas Schöffel <sils@sils.li>2024-06-28 20:53:04 +0200
commit6298e41f62efb4445f8f4c7532c9e08e31c4225e (patch)
treef2435f5e5d20de2588ed762b8ce3fbfca271ac17
parentfix(peertube): Ensure that the nginx reverse proxy works (diff)
downloadnixos-server-6298e41f62efb4445f8f4c7532c9e08e31c4225e.tar.gz
nixos-server-6298e41f62efb4445f8f4c7532c9e08e31c4225e.zip
docs(password): Add documentation on the creation of new service passwords
-rw-r--r--notes/passwords.md6
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
+```