From 9ec7bf4de05e7a3f63b372f25fac23fa83f1d57e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Rynning-T=C3=B8nnesen?= Date: Sat, 6 Apr 2019 15:40:03 +0200 Subject: [PATCH] more spdy tsts --- server/app.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/server/app.js b/server/app.js index c1f66ccb..3e52b694 100644 --- a/server/app.js +++ b/server/app.js @@ -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');