Ignore:
Timestamp:
Apr 1, 2008, 11:36:37 PM (16 years ago)
Author:
geofft
Message:
Add rebecca to sudoers.
Location:
server/fedora/config/etc/httpd
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • server/fedora/config/etc/httpd/conf.d/scripts-special.conf

    r623 r708  
    1010<Location /__scripts/needcerts>
    1111    RewriteEngine On
     12
     13    RewriteCond %{HTTP_HOST} !:444$
     14    RewriteCond %{SERVER_NAME} ^(.*\.)?scripts$
     15    RewriteCond %{THE_REQUEST} ^[^\ ]*\ (.*)\ .*
     16    RewriteRule ^ https://%{SERVER_NAME}.mit.edu:444%1 [L,R]
     17
    1218    RewriteCond %{HTTP_HOST} !:444$
    1319    RewriteCond %{SERVER_NAME} !=scripts-cert.mit.edu
  • server/fedora/config/etc/httpd/conf/httpd.conf

    r707 r708  
    55MaxKeepAliveRequests 1000
    66KeepAliveTimeout 5
    7 MinSpareServers 5
    8 MaxSpareServers 20
    9 StartServers 8
    10 MaxClients 256
    11 MaxRequestsPerChild 4000
     7
     8<IfModule mpm_prefork_module>
     9    MinSpareServers 5
     10    MaxSpareServers 20
     11    StartServers 8
     12    MaxClients 256
     13    MaxRequestsPerChild 4000
     14</IfModule>
     15
     16<IfModule mpm_worker_module>
     17    StartServers 3
     18    MinSpareThreads 75
     19    MaxSpareThreads 250
     20    ServerLimit 16
     21    ThreadsPerChild 25
     22    MaxClients 400
     23    MaxRequestsPerChild 10000
     24</IfModule>
    1225
    1326LoadModule auth_basic_module modules/mod_auth_basic.so
Note: See TracChangeset for help on using the changeset viewer.