Skip to content

Commit

Permalink
Merge branch 'release'
Browse files Browse the repository at this point in the history
  • Loading branch information
tf4482 committed Mar 30, 2024
2 parents bb79290 + fa6568a commit a638a94
Showing 1 changed file with 23 additions and 16 deletions.
39 changes: 23 additions & 16 deletions pytu.example.json
Original file line number Diff line number Diff line change
@@ -1,55 +1,62 @@
{
"tunnels": [
{
"name": "Tunnel 1",
"name": "Tunnel to Ubuntu on Homeserver",
"ssh": {
"port": 12345,
"port": 22,
"options": ["-f", "-N"],
"forwardings": [
{
"local_port": 8001,
"local_port": 81,
"remote_host": "localhost",
"remote_port": 8000
"remote_port": 80
},
{
"local_port": 3307,
"local_port": 8081,
"remote_host": "localhost",
"remote_port": 3306
"remote_port": 8080
},
{
"local_port": 8096,
"remote_host": "localhost",
"remote_port": 8096
}
],
"host": "192.168.1.100"
"user": "username",
"host": "192.168.0.1"
}
},
{
"name": "Tunnel 2",
"name": "Tunnel to Windows 10 on Mums PC",
"ssh": {
"port": 23456,
"port": 22,
"options": ["-f", "-N"],
"forwardings": [
{
"local_port": 3308,
"local_port": 3307,
"remote_host": "localhost",
"remote_port": 3306
}
],
"host": "192.168.1.101"
"user": "daddy",
"host": "192.168.0.2"
}
},
{
"name": "Tunnel 3",
"name": "Tunnel to Termux on Pixel",
"ssh": {
"port": 34567,
"port": 22,
"options": ["-f", "-N"],
"forwardings": [
{
"local_port": 3309,
"local_port": 3308,
"remote_host": "localhost",
"remote_port": 3306
}
],
"host": "192.168.1.102"
"user": "defaultuser",
"host": "192.168.0.96"
}
}
]
}

0 comments on commit a638a94

Please sign in to comment.