grim/hgkeeper

ignore the build binaries

23 months ago, Gary Kramlich
ef4ae04808d3
ignore the build binaries
# Configuring OpenSSH Server
Configuring OpenSSH Server is very straightforward. All we need to do is drop
the following snippet into `/etc/ssh/sshd_config`. Of course, if you customized
the install location or username you will have to adjust the snippet.
You may be able to use `/etc/ssh/sshd_config.d/hgkeeper.conf` but in our
testing on Debian unstable we were unable to get it working properly. If you
have some pointers here, we'd love to hear them!
```
Match User hg
AuthorizedKeysCommand /usr/local/bin/hgkeeper --repos-path=/var/lib/hg/repos/ authorized-keys %f
AuthorizedKeysCommandUser hg
PasswordAuthentication no
```
Open you've saved the file, you will need to reload OpenSSH Server. This is
usually done via `sudo service ssh reload` but will vary based on your
operating system.