summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-03-14 15:42:02 -0300
committerEuAndreh <eu@euandre.org>2024-03-14 15:42:02 -0300
commit67a6ffd92d257dcaf6a4173a6423223bbad5cc2d (patch)
treeac4586c60ae0e89142ada887ecaca789b4cadc8b
parentMakefile: Use TCP port 6001 (diff)
downloadpapod-67a6ffd92d257dcaf6a4173a6423223bbad5cc2d.tar.gz
papod-67a6ffd92d257dcaf6a4173a6423223bbad5cc2d.tar.xz
tests/lighttpd.conf: add the upgrade header without replacing existing ones
-rw-r--r--tests/lighttpd.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lighttpd.conf b/tests/lighttpd.conf
index 2f7f6ca..21f8011 100644
--- a/tests/lighttpd.conf
+++ b/tests/lighttpd.conf
@@ -30,6 +30,6 @@ index-file.names = ( "index.html" )
$HTTP["url"] =~ "^/api/" {
proxy.server = ( "" => (( "host" => var.CWD + "/web.socket" )))
$HTTP["url"] =~ "^/api/socket$" {
- proxy.header = ( "upgrade" => "enable" )
+ proxy.header += ( "upgrade" => "enable" )
}
}