diff --git a/doc/ADMIN.md b/doc/ADMIN.md new file mode 100644 index 0000000..b974125 --- /dev/null +++ b/doc/ADMIN.md @@ -0,0 +1,24 @@ +## Notes on SSH usage + +If you want to use Gitea with SSH and be able to pull/push with you SSH key, your SSH daemon must be properly configured to use private/public keys. Here is a sample configuration of `/etc/ssh/sshd_config` that works with Gitea: + +```bash +PubkeyAuthentication yes +AuthorizedKeysFile %h/.ssh/authorized_keys +ChallengeResponseAuthentication no +PasswordAuthentication no +UsePAM no +``` + +You also need to add your public key to your Gitea profile. + +If you use SSH on another port than 22, you need to add theses lines to your SSH config in `~/.ssh/config`: + +```bash +Host domain.tld + port 2222 # change this with the port you use +``` + +## Private Mode + +Actually it's possible to access to the Git repositories by the `git` command over HTTP also in private mode installation. It's important to know that in this mode the repository could be ALSO getted if you don't set the repository as private in the repos settings. diff --git a/doc/ARMIN.md b/doc/ARMIN.md deleted file mode 100644 index e69de29..0000000