diff options
author | EuAndreh <eu@euandre.org> | 2024-03-14 15:42:02 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-03-14 15:42:02 -0300 |
commit | 67a6ffd92d257dcaf6a4173a6423223bbad5cc2d (patch) | |
tree | ac4586c60ae0e89142ada887ecaca789b4cadc8b | |
parent | Makefile: Use TCP port 6001 (diff) | |
download | papod-67a6ffd92d257dcaf6a4173a6423223bbad5cc2d.tar.gz papod-67a6ffd92d257dcaf6a4173a6423223bbad5cc2d.tar.xz |
tests/lighttpd.conf: add the upgrade header without replacing existing ones
-rw-r--r-- | tests/lighttpd.conf | 2 |
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" ) } } |