ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/apache2-frontend/apache2.conf
Revision: 1.17
Committed: Fri Feb 25 12:41:35 2022 UTC (2 years, 3 months ago) by root
Branch: MAIN
Changes since 1.16: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 # apache2 -X -d /etc/frontend -e debug
2    
3     # apt-get install apache2 libapache2-mod-perl2 libdata-dump-perl libcommon-sense-perl
4    
5     #ServerRoot "/dev/null"
6     Mutex pthread default
7     PidFile /run/frontend.pid
8    
9 root 1.9 Timeout 30
10 root 1.1 KeepAlive On
11     MaxKeepAliveRequests 100
12 root 1.9 KeepAliveTimeout 2
13 root 1.1
14 root 1.9 #TODO: should be it's own user id
15 root 1.1 User www-data
16     Group www-data
17    
18 root 1.9 GracefulShutdownTimeout 8
19 root 1.1
20 root 1.5 AddDefaultCharset UTF-8
21 root 1.9 # EnableSendfile On
22    
23     # to be sure, spell out some defaults
24     HostnameLookups Off
25     AllowEncodedSlashes Off
26 root 1.5
27 root 1.1 # LogLevel: Control the severity of messages logged to the error_log.
28     # Available values: trace8, ..., trace1, debug, info, notice, warn,
29     # error, crit, alert, emerg.
30     # It is also possible to configure the log level for particular modules, e.g.
31     # "LogLevel info ssl:warn"
32     #
33     LogLevel warn
34    
35 root 1.9 # event segfaults, hangs, creates unexplained error messages...
36     #LoadModule mpm_event_module /usr/lib/apache2/modules/mod_mpm_event.so
37     LoadModule mpm_worker_module /usr/lib/apache2/modules/mod_mpm_worker.so
38     #LoadModule mpm_prefork_module /usr/lib/apache2/modules/mod_mpm_prefork.so
39 root 1.1 LoadModule authz_core_module /usr/lib/apache2/modules/mod_authz_core.so
40     LoadModule cgi_module /usr/lib/apache2/modules/mod_cgi.so
41    
42     LoadModule mime_module /usr/lib/apache2/modules/mod_mime.so
43     TypesConfig /etc/mime.types
44 root 1.7 LoadModule mime_magic_module /usr/lib/apache2/modules/mod_mime_magic.so
45 root 1.8 MIMEMagicFile /etc/apache2/magic
46 root 1.1
47 root 1.11 # must NOT be loaded
48 root 1.1 #LoadModule dir_module /usr/lib/apache2/modules/mod_dir.so
49     #DirectoryIndex index.html
50    
51     LoadModule autoindex_module /usr/lib/apache2/modules/mod_autoindex.so
52 root 1.14 IndexOptions Charset=UTF-8 FancyIndexing FoldersFirst HTMLTable IgnoreCase SuppressColumnSorting NameWidth=* SuppressDescription SuppressIcon
53 root 1.1 HeaderName HEADER.html
54     ReadmeName FOOTER.html
55    
56 root 1.9 LoadModule status_module /usr/lib/apache2/modules/mod_status.so
57 root 1.12 #ExtendedStatus Off # ON is the default
58 root 1.9
59 root 1.1 LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
60 root 1.16 LoadModule proxy_wstunnel_module /usr/lib/apache2/modules/mod_proxy_wstunnel.so
61 root 1.1 #LoadModule proxy_fcgi_module /usr/lib/apache2/modules/mod_proxy_fcgi.so
62 root 1.2
63 root 1.1 LoadModule proxy_scgi_module /usr/lib/apache2/modules/mod_proxy_scgi.so
64 root 1.2 #ProxySCGIInternalRedirect Internal-Redirect apache 2.6 :/
65     ProxySCGIInternalRedirect On
66     ProxySCGISendfile On
67    
68 root 1.1 #LoadModule proxy_fdpass_module /usr/lib/apache2/modules/mod_proxy_fdpass.so
69     LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so
70     LoadModule xml2enc_module /usr/lib/apache2/modules/mod_xml2enc.so
71 root 1.15 #LoadModule deflate_module /usr/lib/apache2/modules/mod_deflate.so
72 root 1.1 LoadModule proxy_html_module /usr/lib/apache2/modules/mod_proxy_html.so
73    
74     LoadModule perl_module /usr/lib/apache2/modules/mod_perl.so
75    
76 root 1.11 #<Directory />
77     # Options FollowSymLinks
78     # AllowOverride None
79     ## Require all denied
80     #</Directory>
81 root 1.1
82 root 1.11 #AccessFileName .htaccess
83 root 1.1
84     LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\" %{Host}i" schmorp
85     LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
86     LogFormat "%h %l %u %t \"%r\" %>s %O" common
87     LogFormat "%{Referer}i -> %U" referer
88     LogFormat "%{User-agent}i" agent
89    
90 root 1.10 CustomLog /var/log/frontend/access.log schmorp env=!suppress-logging
91 root 1.1 ErrorLog /var/log/frontend/error.log
92    
93 root 1.9 ListenBacklog 511
94 root 1.1 ServerLimit 1
95 root 1.9 #MaxClients 100
96 root 1.1 MaxRequestWorkers 100
97     StartServers 1
98     ThreadsPerChild 100
99 root 1.9 ThreadLimit 100
100 root 1.1 MinSpareThreads 6
101 root 1.9 MaxSpareThreads 100
102 root 1.1
103     MaxMemFree 64
104 root 1.9 ThreadStackSize 196608
105 root 1.1
106     PerlInterpStart 1
107     PerlInterpMax 1
108     PerlInterpMinSpare 0
109     PerlInterpMaxSpare 1
110 root 1.14 #PerlInterpScope Handler
111 root 1.1
112     Include proxy_html.conf
113    
114     # for debugging, enable reverse proxy url rewrite logging
115     #LogLevel warn proxy_html:trace3
116    
117     ProxyHTMLDocType "<!DOCTYPE html>" SGML
118     ProxyHTMLExtended on
119    
120     # mod_proxy_html uncompresses content, but doesn't recompress nor remove
121     # content-encoding header
122 root 1.17 #SetOutputFilter INFLATE;DEFLATE
123 root 1.1
124     <Perl>
125     use Apache2::ServerUtil ();
126     use Apache2::Const -compile => qw(OK);
127     use lib Apache2::ServerUtil::server_root;
128     use proxy_impl;
129     </Perl>
130    
131 root 1.13 PerlOptions None +Trans +MapToStorage +HeaderParser +Authz +Type
132 root 1.1
133     PerlTransHandler Apache2::Const::OK
134     PerlMapToStorageHandler proxy_impl::map_to_storage
135     PerlHeaderParserHandler Apache2::Const::OK
136 root 1.13
137     #PerlAuthenHandler Apache2::Const::OK
138     PerlAuthzHandler Apache2::Const::OK
139    
140     # always runs all
141 root 1.1 #PerlAccessHandler Apache2::Const::OK
142     #PerlTypeHandler Apache2::Const::OK
143     #PerlFixupHandler Apache2::Const::OK
144    
145     # handlers run anyway
146     # fixup mod_proxy checks for proxy: handler strings
147     # fixup mod_ssl annotates with lots of ssl, or updates for ssl optional
148 root 1.6 # type mod_mime mod_mime_magic do their job
149 root 1.1
150     # RUN_FIRST translate_name
151     # RUN_FIRST map_to_storage
152     # RUN_FIRST check_user_id
153     # RUN_ALL fixups
154     # RUN_FIRST type_checker
155     # RUN_ALL access_checker
156     # RUN_FIRST access_checker_ex
157     # RUN_FIRST auth_checker
158     # VOID insert_filter
159     # RUN_ALL create_request
160     # RUN_ALL post_perdir_config
161     # RUN_FIRST dirwalk_stat
162    
163     # mod_dir fixup
164     # mod_cgi response
165     # mod_autoindex response
166     # ap_process_request_internal() function in server/request.c
167    
168     <Location />
169     Options Indexes FollowSymLinks
170 root 1.11 # Require all granted
171 root 1.1 </Location>
172    
173     Include local.conf
174    
175     # vim: syntax=apache ts=8 sw=4
176