From c8e163f1a0422b2b072c4856a8e7da022ed21eea Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Thu, 4 Sep 2025 20:32:43 -0500 Subject: [PATCH] Fixing ssh connection. --- src/controllers/git.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/git.controller.js b/src/controllers/git.controller.js index f0ef4bd..ef1b276 100644 --- a/src/controllers/git.controller.js +++ b/src/controllers/git.controller.js @@ -1,7 +1,7 @@ const fs = require('fs'); const { Client } = require('ssh2'); const sshConfig = { - host: '10.8.0.1', + host: '192.168.1.62', port: 22, username: 'git', privateKey: fs.readFileSync('/home/git/.ssh/git-ui'), -- 2.43.0