diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-05-16 10:38:47 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-05-16 10:38:47 -0400 |
commit | b6222a32dfc9e427f92a81bfdae8b3e0fc5ab156 (patch) | |
tree | 05416d4d92d7bb3b2e648e5286f8860377a29846 /git.sr.ht | |
parent | e5c78aefbc39b8fc4020bcc192fda0e5bc649855 (diff) | |
download | sr.ht-docs-b6222a32dfc9e427f92a81bfdae8b3e0fc5ab156.tar.gz |
Fix old references to git-srht-* binaries
Diffstat (limited to 'git.sr.ht')
-rw-r--r-- | git.sr.ht/installation.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/git.sr.ht/installation.md b/git.sr.ht/installation.md index db90fbb..41e7ae9 100644 --- a/git.sr.ht/installation.md +++ b/git.sr.ht/installation.md @@ -21,11 +21,11 @@ and ensure that the git.sr.ht web application runs as this user. ## SSH dispatch It is necessary to configure git.sr.ht's SSH dispatcher as the system-wide SSH -authorization hook. In `/etc/ssh/sshd_config`, configure git-srht-dispatch like +authorization hook. In `/etc/ssh/sshd_config`, configure gitsrht-dispatch like so: ``` -AuthorizedKeysCommand=/usr/bin/git-srht-dispatch "%u" "%h" "%t" "%k" +AuthorizedKeysCommand=/usr/bin/gitsrht-dispatch "%u" "%h" "%t" "%k" AuthorizedKeysCommandUser=root PermitUserEnvironment SRHT_* ``` @@ -35,19 +35,19 @@ obtain a list of authorized keys for the connecting user. The default behavior is to read the `.ssh/authorized_keys` file from that user's HOME directory, but the dispatcher can also "dispatch" to other authentication tools for other users. This is used to authorize and perform git operations via the -`git-srht-keys` and `git-srht-shell`. See the `[dispatch]` section of your +`gitsrht-keys` and `gitsrht-shell`. See the `[dispatch]` section of your git.sr.ht configuration for details on how this works and how to configure it for additional services (e.g. man.sr.ht). -Authorization logs are written to `/var/log/git-srht-dispatch` and -`git-srht-shell`. +Authorization logs are written to `/var/log/gitsrht-dispatch` and +`gitsrht-shell`. ## Cronjobs -You must also configure `git-srht-periodic` to run periodically with your +You must also configure `gitsrht-periodic` to run periodically with your favorite cron daemon. We recommend the following crontab: - */20 * * * * git-srht-periodic + */20 * * * * gitsrht-periodic ## HTTP(s) Cloning |