Changeset 40995
- Timestamp:
- Oct 28, 2019, 4:14:36 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20191011/Nebulous/t/conf/extra.conf.in
r4911 r40995 3 3 # this file will be Include-d by @ServerRoot@/httpd.conf 4 4 5 # need to add MPM? 6 7 # Conflicts: mpm_worker mpm_prefork 8 LoadModule mpm_event_module /usr/lib/apache2/modules/mod_mpm_event.so 9 LoadModule authz_core_module /usr/lib/apache2/modules/mod_authz_core.so 10 LoadModule perl_module /usr/lib/apache2/modules/mod_perl.so 11 LoadModule cgid_module /usr/lib/apache2/modules/mod_cgid.so 12 LoadModule cgi_module /usr/lib/apache2/modules/mod_cgi.so 13 LoadModule alias_module /usr/lib/apache2/modules/mod_alias.so 14 15 # event MPM 16 # StartServers: initial number of server processes to start 17 # MinSpareThreads: minimum number of worker threads which are kept spare 18 # MaxSpareThreads: maximum number of worker threads which are kept spare 19 # ThreadsPerChild: constant number of worker threads in each server process 20 # MaxRequestWorkers: maximum number of worker threads 21 # MaxConnectionsPerChild: maximum number of requests a server process serves 22 <IfModule mpm_event_module> 23 StartServers 2 24 MinSpareThreads 25 25 MaxSpareThreads 75 26 ThreadLimit 64 27 ThreadsPerChild 25 28 MaxRequestWorkers 150 29 MaxConnectionsPerChild 0 30 </IfModule> 31 32 <IfModule mod_alias.c> 33 <IfModule mod_cgi.c> 34 Define ENABLE_USR_LIB_CGI_BIN 35 </IfModule> 36 37 <IfModule mod_cgid.c> 38 Define ENABLE_USR_LIB_CGI_BIN 39 </IfModule> 40 41 <IfDefine ENABLE_USR_LIB_CGI_BIN> 42 ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ 43 <Directory "/usr/lib/cgi-bin"> 44 AllowOverride None 45 Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch 46 Require all granted 47 </Directory> 48 </IfDefine> 49 </IfModule> 50 51 # nebulous location: 5 52 <Location /nebulous> 6 53 SetHandler perl-script 7 PerlResponseHandler Apache 2::SOAP54 PerlResponseHandler Apache::SOAP 8 55 PerlSetVar dispatch_to "PerlHandler Nebulous::Server::SOAP" 9 56 PerlSetVar options "compress_threshold => 10000"
Note:
See TracChangeset
for help on using the changeset viewer.
