diff options
| author | EuAndreh <eu@euandre.org> | 2024-03-06 11:57:09 -0300 |
|---|---|---|
| committer | EuAndreh <eu@euandre.org> | 2024-03-06 11:57:09 -0300 |
| commit | 331738a0f69e00d12d44f27a717b3b73733b485a (patch) | |
| tree | e8bc0208326f8ad469bd8cb3ef4fcd395a326d37 /tests/lighttpd.conf | |
| parent | tests/runner.mjs: Add missing await in t.test("", () => {}) (diff) | |
| download | papod-331738a0f69e00d12d44f27a717b3b73733b485a.tar.gz papod-331738a0f69e00d12d44f27a717b3b73733b485a.tar.xz | |
src/hero.mjs: Add rmIf() and mkfifo()
Diffstat (limited to '')
| -rw-r--r-- | tests/lighttpd.conf | 4 |
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" ))) } |
