more spdy tsts

This commit is contained in:
Kasper Rynning-Tønnesen
2019-04-06 15:40:03 +02:00
parent 303f45b728
commit 9ec7bf4de0

View File

@@ -88,7 +88,8 @@ function startSingle(clustered, redis_enabled) {
ca: ca,
spdy: {
protocols: [ 'h2', 'spdy/3.1', 'http/1.1' ],
plain: false,
plain: true,
ssl: true,
// **optional**
// Parse first incoming X_FORWARDED_FOR frame and put it to the
@@ -96,13 +97,6 @@ function startSingle(clustered, redis_enabled) {
// NOTE: Use with care! This should not be used without some proxy that
// will *always* send X_FORWARDED_FOR
'x-forwarded-for': true,
connection: {
windowSize: 1024 * 1024, // Server's window size
// **optional** if true - server will send 3.1 frames on 3.0 *plain* spdy
autoSpdy31: false
}
}
};
var https = require('spdy');