Ensure remote proxy can be connected to after outages

This commit is contained in:
mathias 2019-06-25 12:36:06 +03:00
parent 2a758ffaca
commit 0eb7f99b79

View file

@ -6,7 +6,6 @@ echo "$SYNC_KEY" > .ssh/id_rsa
chmod 600 .ssh/remote
ssh-keyscan github.com >> .ssh/known_hosts
ssh-keyscan -p 53940 play.kaboom.pw >> .ssh/known_hosts
chmod -R 500 plugins/bStats/ plugins/PluginMetrics/ plugins/ProtocolLib/
@ -18,7 +17,7 @@ tmux new -d -s server 'while true; do
done'
tmux new -d -s remote 'while true; do
ssh -i ~/.ssh/remote -o ExitOnForwardFailure=yes -o StreamLocalBindUnlink=yes -c aes128-ctr -C -S none -N -T -R 53950:localhost:25565 -p 53940 remote@play.kaboom.pw
ssh -i ~/.ssh/remote -o StrictHostKeyChecking=no -o ExitOnForwardFailure=yes -o StreamLocalBindUnlink=yes -c aes128-ctr -C -S none -N -T -R 53950:localhost:25565 -p 53940 remote@play.kaboom.pw
sleep 1
done'