Skip to content

Commit 235cb67

Browse files
Quick fix for proxy settings
Change "Live Server Address" to "Actual Server Address". I have also associated proxy path to the code sample.
1 parent 006c075 commit 235cb67

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/Setup.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ In other words. If you just want the reload function when you work with `.html`
3434
3. Install the browser add-on; [Chrome](https://chrome.google.com/webstore/detail/live-server-web-extension/fiegdmejfepffgpnejdinekhfieaogmj/) or [Firefox](https://addons.mozilla.org/en-US/firefox/addon/live-server-web-extension/).
3535
4. Install and run a server on your machine: [Servers and Frameworks](#servers-and-frameworks)
3636
5. Enter the neccesary values (code block below)
37-
1. **Proxy Address:** is the folder you want proxy from. The path is relative to the workspace.
38-
2. **Live Server Address:** is the address where your VS code extension is running.
37+
1. **Proxy Path:** is the path to the folder you want proxy from. The path is relative to the workspace.
38+
2. **Actual Server Address:** is the address where your server is located and the port.
3939
6. Push the `Go Live`-button in your editor's statusbar.
4040

4141
*`.vscode/settings.json`*
@@ -48,7 +48,7 @@ In other words. If you just want the reload function when you work with `.html`
4848
// to another URL (which Live Sever starts).
4949
"liveServer.settings.proxy": {
5050
"enable": true,
51-
"baseUri": "/", // i. Workspace folder.
51+
"baseUri": "/", // i. Proxy Path.
5252
"proxyUri": "http://localhost:80/workspace" // ii. Actual Server Address.
5353
},
5454
}

0 commit comments

Comments
 (0)