From 9f90a3bbab27336b5b0c2f1e5ecde8fa6a2c3b3c Mon Sep 17 00:00:00 2001 From: Cameron Thompson <50184035+iamromulan@users.noreply.github.com> Date: Fri, 12 Apr 2024 11:16:22 -0400 Subject: [PATCH] Update lighttpd.conf Update port to 8080 for ttyd proxy --- lighttpd/lighttpd.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lighttpd/lighttpd.conf b/lighttpd/lighttpd.conf index c5ee638..cd25d7a 100644 --- a/lighttpd/lighttpd.conf +++ b/lighttpd/lighttpd.conf @@ -43,5 +43,5 @@ $HTTP["url"] =~ "/cgi-bin/" { # Handle proxy to ttyd if it's running $HTTP["url"] =~ "(^/console)" { proxy.header = ("map-urlpath" => ( "/console" => "/" ), "upgrade" => "enable" ) - proxy.server = ( "" => ("" => ( "host" => "127.0.0.1", "port" => 8088 ))) + proxy.server = ( "" => ("" => ( "host" => "127.0.0.1", "port" => 8080 ))) }