diff options
author | mscherer <mscherer@users.noreply.github.com> | 2022-03-13 18:30:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-13 18:30:58 +0100 |
commit | 35541f853bf69971bf93e38cd5c9ec2ad6c85a8b (patch) | |
tree | 9b18bc660137751c942a2301a0a206ce7ee6f51a /docs | |
parent | bc0d2c8ada14eae81542f30a81552ed5cef8bd5d (diff) | |
download | gitea-35541f853bf69971bf93e38cd5c9ec2ad6c85a8b.tar.gz gitea-35541f853bf69971bf93e38cd5c9ec2ad6c85a8b.zip |
Fix documentation and #19065 (#19067)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/installation/with-docker.en-us.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/doc/installation/with-docker.en-us.md b/docs/content/doc/installation/with-docker.en-us.md index 77825729c2..6322e0b953 100644 --- a/docs/content/doc/installation/with-docker.en-us.md +++ b/docs/content/doc/installation/with-docker.en-us.md @@ -590,7 +590,7 @@ Add the following block to `/etc/ssh/sshd_config`, on the host: ```bash Match User git AuthorizedKeysCommandUser git - AuthorizedKeysCommand ssh -p 2222 -o StrictHostKeyChecking=no git@127.0.0.1 /usr/local/bin/gitea keys -c /data/gitea/conf/app.ini -e git -u %u -t %t -k %k + AuthorizedKeysCommand /usr/bin/ssh -p 2222 -o StrictHostKeyChecking=no git@127.0.0.1 /usr/local/bin/gitea keys -c /data/gitea/conf/app.ini -e git -u %u -t %t -k %k ``` (From 1.16.0 you will not need to set the `-c /data/gitea/conf/app.ini` option.) |