Skip to content

Commit

Permalink
Web Browser App: Fix default port range for proxy
Browse files Browse the repository at this point in the history
Signed-off-by: Leonty Chudinov <lchudinov@rocketsoftware.com>
  • Loading branch information
Leonty Chudinov committed Apr 16, 2020
1 parent 952150f commit cab8ab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system-apps/web-browser-app/nodeServer/ts/proxy.ts
Expand Up @@ -73,7 +73,7 @@ class ProxyDataService {
private readonly startPort: number;
private readonly endPort: number;
private readonly keysAndCerts: KeysAndCerts;
private readonly portRangeDefault = { start: 16000, end: 16030 };
private readonly portRangeDefault = { start: 8551, end: 8580 };
private readonly proxyServerByPort = new Map<number, Proxy>();
private portRangeSource: string = 'default';

Expand Down

0 comments on commit cab8ab8

Please sign in to comment.