diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2026-03-07 11:45:19 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2026-03-07 11:45:19 -0500 |
| commit | 7c32f8a87889c8fdb8637243fd540061ea1a8539 (patch) | |
| tree | fe5b5b42f3cfe74e755cf57419b7f3d3b6dd89bb /doc/authfs.md | |
| parent | 36381d86c6a690a7870ce360dad63be333361447 (diff) | |
| download | buth-7c32f8a87889c8fdb8637243fd540061ea1a8539.zip | |
doc: simplify architecture, some notes
Got rid of client-side 9p, which was just silly bloat. Using HTTP
exclusively on the client side now, with htmx.
Combined auth and api servers into monolithic buthd, which translates
http/9p between client and backend 9p servers.
Added some implementation and security notes, and part of shopfs.
Diffstat (limited to 'doc/authfs.md')
| -rw-r--r-- | doc/authfs.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/authfs.md b/doc/authfs.md index 0f3ee6f..c3d0488 100644 --- a/doc/authfs.md +++ b/doc/authfs.md @@ -10,9 +10,9 @@ `user` `/users/<username>/` (d) -To add a user, create the `<username>` subdirectory. Authfs +To add a user, create the `<username>/` subdirectory. Authfs automatically creates the `passwd`, `passwd`, and `login` files -inside. +inside. Initially the password is nil and login is disabled. `/users/<username>/passwd` (w) Writing a (cleartext) password changes the user's password. |