diff --git a/ssh/using-private-key-to-login-to-homeless-user.md b/ssh/using-private-key-to-login-to-homeless-user.md new file mode 100644 index 0000000..12efc04 --- /dev/null +++ b/ssh/using-private-key-to-login-to-homeless-user.md @@ -0,0 +1,10 @@ +Authorized keys for the users stays in the home directory of the user by default. But not every user have home directory. If you want to use your keys to login as a user which does not have home directory, you can do this: + +Assuming the name of the user is `git`: +- create `/etc/ssh/authorized_keys_git` and put your key there +- add the following in `/etc/ssh/sshd_config`: +```bash +Match User git + AuthorizedKeysFile /etc/ssh/authorized_keys_%u +``` +and restart sshd.