Created
January 30, 2020 02:11
-
-
Save elleryq/c9b346f28c15af5efab4a5c7865f6737 to your computer and use it in GitHub Desktop.
Angular CLI - proxy.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"/api/*": { | |
"target": "http://localhost:8000", | |
"changeOrigin": true, | |
"secure": false, | |
"logLevel": "debug" | |
}, | |
"/ws/*": { | |
"target": "http://localhost:8000", | |
"changeOrigin": true, | |
"secure": false, | |
"ws": true, | |
"logLevel": "debug" | |
}, | |
"/Gateway/upload.do": { | |
"target": "http://localhost:8000", | |
"changeOrigin": true, | |
"secure": false, | |
"logLevel": "debug" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment