From cab120f521fd8406b590115f2b8d32d593ae1e95 Mon Sep 17 00:00:00 2001 From: Ayesh Karunaratne Date: Wed, 5 Mar 2025 16:19:50 +0700 Subject: [PATCH] ext/curl: update Caddyfile `basicauth` to `basic_auth` In Caddy 2.8, `basicauth` was renamed to `basic_auth`. This also applies `caddy fmt Caddyfile --overwrite` changes. --- ext/curl/tests/Caddyfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/curl/tests/Caddyfile b/ext/curl/tests/Caddyfile index 1c9432bdb0b..30686f0bb9f 100644 --- a/ext/curl/tests/Caddyfile +++ b/ext/curl/tests/Caddyfile @@ -12,7 +12,7 @@ respond /serverpush "main response" respond /serverpush/pushed "pushed response" push /serverpush /serverpush/pushed -basicauth /http-basic-auth { - # bcrypt password hash for "password", calculated with 'caddy hash-password' - user $2a$14$yUKl9SGqVTAAqPTzLup.DefsbXXx3kfreNnzpJOUHcIrKnr5lgef2 +basic_auth /http-basic-auth { + # bcrypt password hash for "password", calculated with 'caddy hash-password' + user $2a$14$yUKl9SGqVTAAqPTzLup.DefsbXXx3kfreNnzpJOUHcIrKnr5lgef2 }