mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
16 lines
181 B
Raku
Executable File
16 lines
181 B
Raku
Executable File
# fastCGI Directives
|
|
|
|
sub mod_fastcgi_directives
|
|
{
|
|
$rv = [
|
|
];
|
|
return &make_directives($rv, $_[0], "mod_fastcgi");
|
|
}
|
|
|
|
sub mod_fastcgi_handlers
|
|
{
|
|
return ("fastcgi-script");
|
|
}
|
|
|
|
|