bifrost, wynne: change forgejo ssh port

This commit is contained in:
Adithya 2024-11-24 15:36:30 +05:30
parent 8a2100ace8
commit ac5851252a
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C
2 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@ _: {
table ip nat { table ip nat {
chain PREROUTING { chain PREROUTING {
type nat hook prerouting priority dstnat; type nat hook prerouting priority dstnat;
iifname ens3 tcp dport 22 dnat to 10.10.10.13:2222 iifname ens3 tcp dport 69 dnat to 10.10.10.13:6969
} }
chain POSTROUTING { chain POSTROUTING {
type nat hook postrouting priority srcnat; type nat hook postrouting priority srcnat;

View file

@ -52,8 +52,8 @@ in
DISABLE_SSH = false; DISABLE_SSH = false;
START_SSH_SERVER = true; START_SSH_SERVER = true;
BUILTIN_SSH_SERVER_USER = "git"; BUILTIN_SSH_SERVER_USER = "git";
SSH_PORT = 22; SSH_PORT = 69;
SSH_LISTEN_PORT = 2222; SSH_LISTEN_PORT = 6969;
SSH_LISTEN_HOST = "10.10.10.13"; SSH_LISTEN_HOST = "10.10.10.13";
HTTP_ADDR = "10.10.10.13"; HTTP_ADDR = "10.10.10.13";
HTTP_PORT = 3000; HTTP_PORT = 3000;