Skip to content

Commit 5c47016

Browse files
committed
Remove server IP from docs
1 parent 951513e commit 5c47016

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

backend/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Hetzner VPS (Ubuntu 24.04)
2424

2525
SSH into your Hetzner server:
2626
```bash
27-
ssh root@159.69.189.116
27+
ssh root@YOUR_SERVER_IP
2828
```
2929

3030
Run the setup script:
@@ -50,7 +50,7 @@ echo "YOUR_PUBLIC_KEY_HERE" >> /home/termuser/.ssh/authorized_keys
5050

5151
Test SSH access in a NEW terminal:
5252
```bash
53-
ssh termuser@159.69.189.116
53+
ssh termuser@YOUR_SERVER_IP
5454
```
5555

5656
Only 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

6666
cd /opt/terminal-learning
6767

6868
# Clone repo (or copy files)
6969
git 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
7575
docker build -t terminal-sandbox -f Dockerfile.sandbox .

0 commit comments

Comments
 (0)