proxyConfig with Windows authentication stopped working after update to 8
See original GitHub issue🐞 Bug report
Command (mark with an x)
- [ ] new
- [ ] build
- [X] serve
- [ ] test
- [ ] e2e
- [ ] generate
- [ ] add
- [ ] update
- [ ] lint
- [ ] xi18n
- [ ] run
- [ ] config
- [ ] help
- [ ] version
- [ ] doc
Is this a regression?
Yes, the previous version in which this bug was not present was: 7.1.4Description
When using ng serve with a proxy config to forward all api calls to a .net api hosted on local IIS with windows authentication the browser constantly displays the login dialog.
🔬 Minimal Reproduction
Create project in ng7 and forward all api calls to IIS with windows authentication using config below, works fine. Update to 8 and authentication fails.
module.exports = {
'/api/*': {
target: "http://localhost/api/",
secure: false,
logLevel: "debug",
changeOrigin: true,
agent: new Agent({
maxSockets: 100,
keepAlive: true,
maxFreeSockets: 10,
freeSocketTimeout: 30000,
timeout: 60000,
keepAliveMsecs: 300000,
}),
onProxyRes: proxyRes => {
let key = 'www-authenticate';
proxyRes.headers[key] = proxyRes.headers[key] && proxyRes.headers[key].split(',');
}
}
};
🔥 Exception or Error
🌍 Your Environment
Failing environment:
Angular CLI: 8.0.0
Node: 12.3.1
OS: win32 x64
Angular: 8.0.0
... animations, cli, common, compiler, compiler-cli, core, forms
... language-service, platform-browser, platform-browser-dynamic
... router
Package Version
-----------------------------------------------------------
@angular-devkit/architect 0.800.0
@angular-devkit/build-angular 0.800.0
@angular-devkit/build-optimizer 0.800.0
@angular-devkit/build-webpack 0.800.0
@angular-devkit/core 8.0.0
@angular-devkit/schematics 8.0.0
@angular/cdk 7.2.0
@ngtools/webpack 8.0.0
@schematics/angular 8.0.0
@schematics/update 0.800.0
rxjs 6.5.2
typescript 3.4.5
webpack 4.30.0
Working environment:
Angular CLI: 7.1.4
Node: 12.3.1
OS: win32 x64
Angular: 7.1.4
... animations, cli, common, compiler, compiler-cli, core, forms
... language-service, platform-browser, platform-browser-dynamic
... router
Package Version
-----------------------------------------------------------
@angular-devkit/architect 0.11.4
@angular-devkit/build-angular 0.11.4
@angular-devkit/build-optimizer 0.11.4
@angular-devkit/build-webpack 0.11.4
@angular-devkit/core 7.1.4
@angular-devkit/schematics 7.1.4
@ngtools/webpack 7.1.4
@schematics/angular 7.1.4
@schematics/update 0.11.4
rxjs 6.3.3
typescript 3.1.6
webpack 4.23.1
Anything else relevant?
Updated weback-dev-server to 3.3.1 and agentkeepalaive to 4.0.2 to match ng 8.0 in 7.1.4, everything still works in 7.1.4
Issue Analytics
- State:
- Created 4 years ago
- Reactions:7
- Comments:22
Top Results From Across the Web
Windows Update broken once proxy server configured
After configuring a proxy server through the settings app, Windows Update fails to download updates. Under Applications & Services Logs > Microsoft ......
Read more >angular cli + windows authentication backend - Stack Overflow
With an angular2 service I do a http-get to one of the back-end services. Since back-end services run in IISExpress with Windows Authentication...
Read more >Duo Authentication Proxy Reference - Duo Security
When running the Authentication Proxy on Windows, you may use encrypted alternatives for all service account passwords, Duo secret keys, and ...
Read more >IIS enable authentication for reverse proxy - Server Fault
As links are not considered a good answer on stack, I'll summarize: Install IIS with Web Server role along with URL Authorization, Windows...
Read more >Redirecting Robots through a Proxy Server
When the robot is installed in user mode, to use proxy configurations that ... Robot can work with proxy configurations that use Authentication...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Same issue here. IE works fine while Chrome doesn’t work.
😃 I have found a temporary work around until the Angular team comes up with a patch.
From your Angular project directory, edit the file: node_modules\@angular-devkit\build-webpack\src\webpack-dev-server\index.js
Comment out the following as shown below:
In summary - just before running the webpack dev-server Angular injects a dev-server plugin called ArchitectPlugin. Why this plugin causes new proxy sockets to be opened rather than reused - I haven’t a clue.
@alan-agius4 - can you assign this to a dev who knows the ArchitectPlugin?