Added proxyTimeout to ServerOptions (#23189)

This commit is contained in:
jlaamanen
2018-01-29 22:43:22 +02:00
committed by Sheetal Nandi
parent d8c895891b
commit 8fc55719bb

View File

@@ -197,6 +197,8 @@ declare namespace Server {
autoRewrite?: boolean;
/** Rewrites the location protocol on (301 / 302 / 307 / 308) redirects to 'http' or 'https'.Default: null. */
protocolRewrite?: string;
/** Timeout (in milliseconds) when proxy receives no response from target. Default: 120000 (2 minutes) */
proxyTimeout?: number;
}
}