17 | | To use Fast CGI, build an Apache server with mod_fastcgi, |
18 | | compile the Fast CGI version of the scheduler (`fcgi`) and file upload handler |
19 | | (`fcgi_file_upload_handler`), modify your `httpd.conf`, and restart Apache. |
| 17 | To use Fast CGI: |
| 18 | * Build (or yum) an Apache server with mod_fastcgi |
| 19 | * compile the Fast CGI version of the scheduler (`fcgi`) and file upload handler (`fcgi_file_upload_handler`) |
| 20 | * Copy these to your project's cgi-bin directory, with the names 'cgi' and 'file_upload_handler'. |
| 21 | * Add the following to your httpd.conf: |
| 22 | {{{ |
| 23 | AddHandler fcgid-script .cgi cgi .fcgi fcgi |
| 24 | }}} |
| 25 | * restart Apache. |