Changes between Version 17 and Version 18 of Nmm2022/Agenda/RTsetup


Ignore:
Timestamp:
May 24, 2022, 8:36:25 AM (3 years ago)
Author:
geethike
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Nmm2022/Agenda/RTsetup

    v17 v18  
    1515=== Install Apache Web Server ===
    1616{{{
    17 #apt install apache2
     17# apt install apache2
    1818# systemctl start apache2
    1919# systemctl enable apache2
     
    279279
    280280=== Running Request Tracker via Web Server ===
    281 
     281You can stop RT standalone mode by pressing CTRL+c and proceed to configure Apache to Server RT on Ubuntu.
     282
     283we have already installed Apache2
     284
     285Set the maximum HTTP request length by editing the file, '''/etc/apache2/mods-available/fcgid.conf, ''' and adding the line, ''' FcgidMaxRequestLen 1073741824.'''
     286
     287{{{
     288vim /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}}}