summaryrefslogtreecommitdiff
path: root/tests/lighttpd.conf
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-03-06 11:57:09 -0300
committerEuAndreh <eu@euandre.org>2024-03-06 11:57:09 -0300
commit331738a0f69e00d12d44f27a717b3b73733b485a (patch)
treee8bc0208326f8ad469bd8cb3ef4fcd395a326d37 /tests/lighttpd.conf
parenttests/runner.mjs: Add missing await in t.test("", () => {}) (diff)
downloadpapod-331738a0f69e00d12d44f27a717b3b73733b485a.tar.gz
papod-331738a0f69e00d12d44f27a717b3b73733b485a.tar.xz
src/hero.mjs: Add rmIf() and mkfifo()
Diffstat (limited to '')
-rw-r--r--tests/lighttpd.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lighttpd.conf b/tests/lighttpd.conf
index 5438366..dfe395b 100644
--- a/tests/lighttpd.conf
+++ b/tests/lighttpd.conf
@@ -3,7 +3,7 @@ server.modules += (
"mod_accesslog",
)
-server.bind = var.CWD + "/lighttpd.sock"
+server.bind = var.CWD + "/lighttpd.socket"
server.document-root = var.CWD + "/src/static/"
server.errorlog = "/dev/stderr"
@@ -28,5 +28,5 @@ accesslog.format += "}"
index-file.names = ( "index.html" )
$HTTP["url"] =~ "^/api/" {
- proxy.server = ( "" => (( "host" => var.CWD + "/web.sock" )))
+ proxy.server = ( "" => (( "host" => var.CWD + "/web.socket" )))
}