You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.9 KiB
57 lines
1.9 KiB
PidFile conf/apache2.pid
|
|
Timeout 300
|
|
KeepAlive On
|
|
MaxKeepAliveRequests 100
|
|
KeepAliveTimeout 5
|
|
HostnameLookups Off
|
|
LogLevel warn
|
|
Listen 127.0.0.1:19876
|
|
LoadModule authz_core_module /usr/lib/apache2/modules/mod_authz_core.so
|
|
LoadModule authz_host_module /usr/lib/apache2/modules/mod_authz_host.so
|
|
<Directory />
|
|
Options FollowSymLinks
|
|
AllowOverride None
|
|
Require all denied
|
|
</Directory>
|
|
<Directory /usr/share>
|
|
AllowOverride None
|
|
Require all granted
|
|
</Directory>
|
|
<Directory /var/www/>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride None
|
|
Require all granted
|
|
</Directory>
|
|
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
|
|
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
|
|
ErrorLog conf/apache2.log
|
|
CustomLog conf/apache2.log vhost_combined
|
|
|
|
LoadModule alias_module /usr/lib/apache2/modules/mod_alias.so
|
|
LoadModule dir_module /usr/lib/apache2/modules/mod_dir.so
|
|
LoadModule env_module /usr/lib/apache2/modules/mod_env.so
|
|
LoadModule mime_module /usr/lib/apache2/modules/mod_mime.so
|
|
LoadModule fcgid_module /usr/lib/apache2/modules/mod_fcgid.so
|
|
FcgidConnectTimeout 20
|
|
FcgidProcessTableFile conf/fcgid_shm
|
|
FcgidIPCDir conf/
|
|
AddHandler fcgid-script .fcgi
|
|
LoadModule filter_module /usr/lib/apache2/modules/mod_filter.so
|
|
TypesConfig /etc/mime.types
|
|
AddLanguage en .en
|
|
AddLanguage fr .fr
|
|
LoadModule mpm_event_module /usr/lib/apache2/modules/mod_mpm_event.so
|
|
<IfModule mpm_event_module>
|
|
StartServers 1
|
|
MinSpareThreads 2
|
|
MaxSpareThreads 4
|
|
ThreadLimit 64
|
|
ThreadsPerChild 4
|
|
MaxRequestWorkers 12
|
|
MaxConnectionsPerChild 0
|
|
</IfModule>
|
|
LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so
|
|
LoadModule setenvif_module /usr/lib/apache2/modules/mod_setenvif.so
|
|
LoadModule perl_module /usr/lib/apache2/modules/mod_perl.so
|
|
IncludeOptional conf/manager-apache2.X.conf
|
|
IncludeOptional conf/portal-apache2.X.conf
|
|
|