Imposing resource limits on FrontPage® extensions with the Zeus Web Server
Resource usage
It is possible to limit the amount of resource taken up by FrontPage extensions by creating a global htaccess file and applying resource limiting directives to FrontPage CGIs. For example, the following .htaccess fragment reduces the priority of the FrontPage extensions and limits the amount of CPU time used by any particular instance to 30 seconds, except for the various FrontPage widgets (they call the shtml.exe CGI) which have full priority but are limited to 10 seconds of CPU time.
<Directory /usr/local/frontpage> <!Files shtml.exe> CGIPriority 10 RLimitCPU 30 </Files> <Files shtml.exe> RLimitCPU 10 </Files> </Directory>For more details on what limits can be imposed, see the documentation for the htaccess module. Note that these directives are only available in the global .htaccess file.