-
-
Save panchalkalpesh/9daaba05c3ca4fccd336549f18a1648c to your computer and use it in GitHub Desktop.
Proxy configuration with a few paths for angular
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
{ | |
"/myapp/*": { | |
"target": "https://pedro.internal.lab:9443", | |
"secure": false, | |
"logLevel": "debug", | |
"changeOrigin": true | |
}, | |
"/users/*": { | |
"target": "https://sonia.internal.lab:9443", | |
"secure": false, | |
"logLevel": "debug", | |
"changeOrigin": true, | |
"headers": {"Authorization": "Basic cm8vdDpub3ZlvGw="} | |
}, | |
"/items/*": { | |
"target": "https://pedro.internal.lab:8443", | |
"secure": false, | |
"logLevel": "debug", | |
"changeOrigin": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment