From 7072f71e001465e1e66f66d17601c3b2b26c33c5 Mon Sep 17 00:00:00 2001 From: whaffman Date: Fri, 31 Oct 2025 13:33:36 +0100 Subject: [PATCH] fix: add missing semicolons in location and cgi_handler directives in default.conf --- config/default.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/default.conf b/config/default.conf index ea03b0e..9a7330b 100644 --- a/config/default.conf +++ b/config/default.conf @@ -151,10 +151,10 @@ server { } location /directory { root ./htdocs/YoupiBanane/; - index youpi.bad_extension + index youpi.bad_extension; allowed_methods GET POST PUT DELETE; } cgi_enabled yes; - cgi_handler .bla ./ubuntu_cgi_tester + cgi_handler .bla ./ubuntu_cgi_tester; } \ No newline at end of file