281 | | |
| 281 | You can stop RT standalone mode by pressing CTRL+c and proceed to configure Apache to Server RT on Ubuntu. |
| 282 | |
| 283 | we have already installed Apache2 |
| 284 | |
| 285 | Set the maximum HTTP request length by editing the file, '''/etc/apache2/mods-available/fcgid.conf, ''' and adding the line, ''' FcgidMaxRequestLen 1073741824.''' |
| 286 | |
| 287 | {{{ |
| 288 | vim /etc/apache2/mods-available/fcgid.conf |
| 289 | }}} |
| 290 | |
| 291 | {{{ |
| 292 | <IfModule mod_fcgid.c> |
| 293 | FcgidConnectTimeout 20 |
| 294 | FcgidMaxRequestLen 1073741824 |
| 295 | |
| 296 | <IfModule mod_mime.c> |
| 297 | AddHandler fcgid-script .fcgi |
| 298 | </IfModule> |
| 299 | </IfModule> |
| 300 | }}} |