oizys/hosts/algiz
2023-08-05 16:25:20 -05:00
..
configuration.nix more wip 2023-07-25 10:59:35 -05:00
hardware-configuration.nix fmt 2023-05-03 16:32:17 -05:00
motd.nix format 2023-07-25 11:08:11 -05:00
README.md WIP 2023-05-03 16:32:06 -05:00

sudo -u git ssh-keygen -t rsa -b 4096 -C "Gitea Host Key" sudo -u git cat /home/git/.ssh/id_rsa.pub | sudo -u git tee -a /home/git/.ssh/authorized_keys sudo -u git chmod 600 /home/git/.ssh/authorized_keys

Should Look like this

# SSH pubkey from git user
ssh-rsa <Gitea Host Key>

# other keys from users
command="/usr/local/bin/gitea --config=/data/gitea/conf/app.ini serv key-1",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty <user pubkey>

Nixify this step.... cat <<"EOF" | sudo tee /usr/local/bin/gitea #!/bin/sh ssh -p 2222 -o StrictHostKeyChecking=no git@127.0.0.1 "SSH_ORIGINAL_COMMAND="$SSH_ORIGINAL_COMMAND" $0 $@" EOF sudo chmod +x /usr/local/bin/gitea