From 22179e8ee5d3a5462d19e35f50ae86d883a5aea5 Mon Sep 17 00:00:00 2001 From: Justin Campbell Date: Tue, 18 May 2021 11:10:57 -0400 Subject: [PATCH] Update ssh config ports --- docs/Dev Environment Setup Guide.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/Dev Environment Setup Guide.md b/docs/Dev Environment Setup Guide.md index e6465bc..a6e4ca8 100644 --- a/docs/Dev Environment Setup Guide.md +++ b/docs/Dev Environment Setup Guide.md @@ -55,12 +55,10 @@ In your editor of choice, create the file `~/.ssh/config` and add this: Host campb303-w2vm1 HostName w2vm1.ecn.purdue.edu User campb303 - # Forward webqueue2 Frontend Port - LocalForward 3000 localhost:3000 # Forward webqueue2 API Port LocalForward 5000 localhost:5000 - # Forward webqueue2 Docs Port - LocalForward 6060 localhost:6060 + # Forward webqueue2 API Docs Port + LocalForward 8000 localhost:8000 ``` The configuration above will allow you to connect to the development machine and automatically forward ports for development tools to work. Here's a bit more detail about what's going on: