File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Hetzner VPS (Ubuntu 24.04)
2424
2525SSH into your Hetzner server:
2626``` bash
27- ssh root@159.69.189.116
27+ ssh root@YOUR_SERVER_IP
2828```
2929
3030Run the setup script:
@@ -50,7 +50,7 @@ echo "YOUR_PUBLIC_KEY_HERE" >> /home/termuser/.ssh/authorized_keys
5050
5151Test SSH access in a NEW terminal:
5252``` bash
53- ssh termuser@159.69.189.116
53+ ssh termuser@YOUR_SERVER_IP
5454```
5555
5656Only if that works, restart SSH:
@@ -61,15 +61,15 @@ sudo systemctl restart sshd
6161### 3. Deploy Application (as termuser)
6262
6363``` bash
64- ssh termuser@159.69.189.116
64+ ssh termuser@YOUR_SERVER_IP
6565
6666cd /opt/terminal-learning
6767
6868# Clone repo (or copy files)
6969git clone https://github.com/YOUR_REPO.git .
7070
7171# Or upload backend files:
72- # scp -r backend/* termuser@159.69.189.116 :/opt/terminal-learning/
72+ # scp -r backend/* termuser@YOUR_SERVER_IP :/opt/terminal-learning/
7373
7474# Build Docker image
7575docker build -t terminal-sandbox -f Dockerfile.sandbox .
You can’t perform that action at this time.
0 commit comments