forked from M-Labs/it-infra
aux: ssh reverse proxy
https://spoton.cz/index.php/2017/12/04/reverse-ssh-proxy-with-systemd/
This commit is contained in:
parent
e15b25055b
commit
dba987be15
|
@ -127,6 +127,19 @@ in
|
|||
shell = pkgs.fish;
|
||||
};
|
||||
|
||||
systemd.services.ssh-reverse-proxy = {
|
||||
description = "SSH Reverse Proxy";
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
after = [ "network.target" ];
|
||||
serviceConfig = {
|
||||
Restart = "always";
|
||||
RestartSec = "1min";
|
||||
User = "backupdl";
|
||||
Group = "users";
|
||||
ExecStart = "${pkgs.openssh}/bin/ssh -R 42.200.147.171:3940:localhost:22 -o ServerAliveInterval=60 -o ServerAliveCountMax=1 -o ExitOnForwardFailure=yes -N -T nixbld.m-labs.hk";
|
||||
};
|
||||
};
|
||||
|
||||
documentation.enable = false;
|
||||
environment.systemPackages = with pkgs; [
|
||||
wget vim git usbutils pciutils file lm_sensors acpi
|
||||
|
|
Loading…
Reference in New Issue