fix: add missing semicolons in location and cgi_handler directives in default.conf

This commit is contained in:
whaffman 2025-10-31 13:33:36 +01:00
parent fbf2a1eb82
commit 7072f71e00

View File

@ -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;
}