Ticket #58454: httpd.conf

File httpd.conf, 20.4 KB (added by Behinder (behinder), 5 years ago)
Line 
1#
2# This is the main Apache HTTP server configuration file.  It contains the
3# configuration directives that give the server its instructions.
4# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
5# In particular, see
6# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
7# for a discussion of each configuration directive.
8#
9# Do NOT simply read the instructions in here without understanding
10# what they do.  They're here only as hints or reminders.  If you are unsure
11# consult the online docs. You have been warned.
12#
13# Configuration and logfile names: If the filenames you specify for many
14# of the server's control files begin with "/" (or "drive:/" for Win32), the
15# server will use that explicit path.  If the filenames do *not* begin
16# with "/", the value of ServerRoot is prepended -- so "logs/access_log"
17# with ServerRoot set to "/usr/local/apache2" will be interpreted by the
18# server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log"
19# will be interpreted as '/logs/access_log'.
20
21#
22# ServerRoot: The top of the directory tree under which the server's
23# configuration, error, and log files are kept.
24#
25# Do not add a slash at the end of the directory path.  If you point
26# ServerRoot at a non-local disk, be sure to specify a local disk on the
27# Mutex directive, if file-based mutexes are used.  If you wish to share the
28# same ServerRoot for multiple httpd daemons, you will need to change at
29# least PidFile.
30#
31ServerRoot "/opt/local"
32
33#
34# Mutex: Allows you to set the mutex mechanism and mutex file directory
35# for individual mutexes, or change the global defaults
36#
37# Uncomment and change the directory if mutexes are file-based and the default
38# mutex file directory is not on a local disk or is not appropriate for some
39# other reason.
40#
41# Mutex default:var/run/apache2
42
43#
44# Listen: Allows you to bind Apache to specific IP addresses and/or
45# ports, instead of the default. See also the <VirtualHost>
46# directive.
47#
48# Change this to Listen on specific IP addresses as shown below to
49# prevent Apache from glomming onto all bound IP addresses.
50#
51#Listen 12.34.56.78:80
52Listen 80
53
54#
55# Dynamic Shared Object (DSO) Support
56#
57# To be able to use the functionality of a module which was built as a DSO you
58# have to place corresponding `LoadModule' lines at this location so the
59# directives contained in it are actually available _before_ they are used.
60# Statically compiled modules (those listed by `httpd -l') do not need
61# to be loaded here.
62#
63# Example:
64# LoadModule foo_module modules/mod_foo.so
65#
66LoadModule authn_file_module lib/apache2/modules/mod_authn_file.so
67#LoadModule authn_dbm_module lib/apache2/modules/mod_authn_dbm.so
68#LoadModule authn_anon_module lib/apache2/modules/mod_authn_anon.so
69#LoadModule authn_dbd_module lib/apache2/modules/mod_authn_dbd.so
70#LoadModule authn_socache_module lib/apache2/modules/mod_authn_socache.so
71LoadModule authn_core_module lib/apache2/modules/mod_authn_core.so
72LoadModule authz_host_module lib/apache2/modules/mod_authz_host.so
73LoadModule authz_groupfile_module lib/apache2/modules/mod_authz_groupfile.so
74LoadModule authz_user_module lib/apache2/modules/mod_authz_user.so
75#LoadModule authz_dbm_module lib/apache2/modules/mod_authz_dbm.so
76#LoadModule authz_owner_module lib/apache2/modules/mod_authz_owner.so
77#LoadModule authz_dbd_module lib/apache2/modules/mod_authz_dbd.so
78LoadModule authz_core_module lib/apache2/modules/mod_authz_core.so
79LoadModule access_compat_module lib/apache2/modules/mod_access_compat.so
80LoadModule auth_basic_module lib/apache2/modules/mod_auth_basic.so
81#LoadModule auth_form_module lib/apache2/modules/mod_auth_form.so
82#LoadModule auth_digest_module lib/apache2/modules/mod_auth_digest.so
83#LoadModule allowmethods_module lib/apache2/modules/mod_allowmethods.so
84#LoadModule file_cache_module lib/apache2/modules/mod_file_cache.so
85#LoadModule cache_module lib/apache2/modules/mod_cache.so
86#LoadModule cache_disk_module lib/apache2/modules/mod_cache_disk.so
87#LoadModule cache_socache_module lib/apache2/modules/mod_cache_socache.so
88#LoadModule socache_shmcb_module lib/apache2/modules/mod_socache_shmcb.so
89#LoadModule socache_dbm_module lib/apache2/modules/mod_socache_dbm.so
90#LoadModule socache_memcache_module lib/apache2/modules/mod_socache_memcache.so
91#LoadModule watchdog_module lib/apache2/modules/mod_watchdog.so
92#LoadModule macro_module lib/apache2/modules/mod_macro.so
93#LoadModule dbd_module lib/apache2/modules/mod_dbd.so
94#LoadModule dumpio_module lib/apache2/modules/mod_dumpio.so
95#LoadModule echo_module lib/apache2/modules/mod_echo.so
96#LoadModule buffer_module lib/apache2/modules/mod_buffer.so
97#LoadModule data_module lib/apache2/modules/mod_data.so
98#LoadModule ratelimit_module lib/apache2/modules/mod_ratelimit.so
99LoadModule reqtimeout_module lib/apache2/modules/mod_reqtimeout.so
100#LoadModule ext_filter_module lib/apache2/modules/mod_ext_filter.so
101#LoadModule request_module lib/apache2/modules/mod_request.so
102LoadModule include_module lib/apache2/modules/mod_include.so
103LoadModule filter_module lib/apache2/modules/mod_filter.so
104#LoadModule reflector_module lib/apache2/modules/mod_reflector.so
105#LoadModule substitute_module lib/apache2/modules/mod_substitute.so
106#LoadModule sed_module lib/apache2/modules/mod_sed.so
107#LoadModule charset_lite_module lib/apache2/modules/mod_charset_lite.so
108#LoadModule deflate_module lib/apache2/modules/mod_deflate.so
109#LoadModule xml2enc_module lib/apache2/modules/mod_xml2enc.so
110#LoadModule proxy_html_module lib/apache2/modules/mod_proxy_html.so
111LoadModule mime_module lib/apache2/modules/mod_mime.so
112LoadModule log_config_module lib/apache2/modules/mod_log_config.so
113#LoadModule log_debug_module lib/apache2/modules/mod_log_debug.so
114#LoadModule log_forensic_module lib/apache2/modules/mod_log_forensic.so
115#LoadModule logio_module lib/apache2/modules/mod_logio.so
116LoadModule env_module lib/apache2/modules/mod_env.so
117#LoadModule mime_magic_module lib/apache2/modules/mod_mime_magic.so
118#LoadModule expires_module lib/apache2/modules/mod_expires.so
119LoadModule headers_module lib/apache2/modules/mod_headers.so
120#LoadModule usertrack_module lib/apache2/modules/mod_usertrack.so
121#LoadModule unique_id_module lib/apache2/modules/mod_unique_id.so
122LoadModule setenvif_module lib/apache2/modules/mod_setenvif.so
123LoadModule version_module lib/apache2/modules/mod_version.so
124#LoadModule remoteip_module lib/apache2/modules/mod_remoteip.so
125#LoadModule proxy_module lib/apache2/modules/mod_proxy.so
126#LoadModule proxy_connect_module lib/apache2/modules/mod_proxy_connect.so
127#LoadModule proxy_ftp_module lib/apache2/modules/mod_proxy_ftp.so
128#LoadModule proxy_http_module lib/apache2/modules/mod_proxy_http.so
129#LoadModule proxy_fcgi_module lib/apache2/modules/mod_proxy_fcgi.so
130#LoadModule proxy_scgi_module lib/apache2/modules/mod_proxy_scgi.so
131#LoadModule proxy_fdpass_module lib/apache2/modules/mod_proxy_fdpass.so
132#LoadModule proxy_wstunnel_module lib/apache2/modules/mod_proxy_wstunnel.so
133#LoadModule proxy_ajp_module lib/apache2/modules/mod_proxy_ajp.so
134#LoadModule proxy_balancer_module lib/apache2/modules/mod_proxy_balancer.so
135#LoadModule proxy_express_module lib/apache2/modules/mod_proxy_express.so
136#LoadModule proxy_hcheck_module lib/apache2/modules/mod_proxy_hcheck.so
137#LoadModule session_module lib/apache2/modules/mod_session.so
138#LoadModule session_cookie_module lib/apache2/modules/mod_session_cookie.so
139#LoadModule session_dbd_module lib/apache2/modules/mod_session_dbd.so
140LoadModule slotmem_shm_module lib/apache2/modules/mod_slotmem_shm.so
141#LoadModule slotmem_plain_module lib/apache2/modules/mod_slotmem_plain.so
142#LoadModule ssl_module lib/apache2/modules/mod_ssl.so
143#LoadModule dialup_module lib/apache2/modules/mod_dialup.so
144#LoadModule lbmethod_byrequests_module lib/apache2/modules/mod_lbmethod_byrequests.so
145#LoadModule lbmethod_bytraffic_module lib/apache2/modules/mod_lbmethod_bytraffic.so
146#LoadModule lbmethod_bybusyness_module lib/apache2/modules/mod_lbmethod_bybusyness.so
147#LoadModule lbmethod_heartbeat_module lib/apache2/modules/mod_lbmethod_heartbeat.so
148LoadModule unixd_module lib/apache2/modules/mod_unixd.so
149#LoadModule heartbeat_module lib/apache2/modules/mod_heartbeat.so
150#LoadModule heartmonitor_module lib/apache2/modules/mod_heartmonitor.so
151#LoadModule dav_module lib/apache2/modules/mod_dav.so
152LoadModule status_module lib/apache2/modules/mod_status.so
153LoadModule autoindex_module lib/apache2/modules/mod_autoindex.so
154#LoadModule asis_module lib/apache2/modules/mod_asis.so
155#LoadModule info_module lib/apache2/modules/mod_info.so
156#LoadModule cgi_module lib/apache2/modules/mod_cgi.so
157#LoadModule dav_fs_module lib/apache2/modules/mod_dav_fs.so
158#LoadModule dav_lock_module lib/apache2/modules/mod_dav_lock.so
159LoadModule vhost_alias_module lib/apache2/modules/mod_vhost_alias.so
160LoadModule negotiation_module lib/apache2/modules/mod_negotiation.so
161LoadModule dir_module lib/apache2/modules/mod_dir.so
162#LoadModule actions_module lib/apache2/modules/mod_actions.so
163#LoadModule speling_module lib/apache2/modules/mod_speling.so
164LoadModule userdir_module lib/apache2/modules/mod_userdir.so
165LoadModule alias_module lib/apache2/modules/mod_alias.so
166LoadModule rewrite_module lib/apache2/modules/mod_rewrite.so
167LoadModule php7_module        lib/apache2/modules/mod_php73.so
168
169<IfModule unixd_module>
170#
171# If you wish httpd to run as a different user or group, you must run
172# httpd as root initially and it will switch.
173#
174# User/Group: The name (or #number) of the user/group to run httpd as.
175# It is usually good practice to create a dedicated user and group for
176# running httpd, as with most system services.
177#
178User _www
179Group _www
180
181</IfModule>
182
183# 'Main' server configuration
184#
185# The directives in this section set up the values used by the 'main'
186# server, which responds to any requests that aren't handled by a
187# <VirtualHost> definition.  These values also provide defaults for
188# any <VirtualHost> containers you may define later in the file.
189#
190# All of these directives may appear inside <VirtualHost> containers,
191# in which case these default settings will be overridden for the
192# virtual host being defined.
193#
194
195#
196# ServerAdmin: Your address, where problems with the server should be
197# e-mailed.  This address appears on some server-generated pages, such
198# as error documents.  e.g. admin@your-domain.com
199#
200ServerAdmin seba.szwarc@gmail.com
201
202#
203# ServerName gives the name and port that the server uses to identify itself.
204# This can often be determined automatically, but we recommend you specify
205# it explicitly to prevent problems during startup.
206#
207# If your host doesn't have a registered DNS name, enter its IP address here.
208#
209#ServerName www.example.com:80
210
211#
212# Deny access to the entirety of your server's filesystem. You must
213# explicitly permit access to web content directories in other
214# <Directory> blocks below.
215#
216<Directory />
217    AllowOverride none
218    Require all denied
219</Directory>
220
221#
222# Note that from this point forward you must specifically allow
223# particular features to be enabled - so if something's not working as
224# you might expect, make sure that you have specifically enabled it
225# below.
226#
227
228#
229# DocumentRoot: The directory out of which you will serve your
230# documents. By default, all requests are taken from this directory, but
231# symbolic links and aliases may be used to point to other locations.
232#
233DocumentRoot "/opt/local/www/apache2/html"
234<Directory "/opt/local/www/apache2/html">
235    #
236    # Possible values for the Options directive are "None", "All",
237    # or any combination of:
238    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
239    #
240    # Note that "MultiViews" must be named *explicitly* --- "Options All"
241    # doesn't give it to you.
242    #
243    # The Options directive is both complicated and important.  Please see
244    # http://httpd.apache.org/docs/2.4/mod/core.html#options
245    # for more information.
246    #
247    Options Indexes FollowSymLinks
248
249    #
250    # AllowOverride controls what directives may be placed in .htaccess files.
251    # It can be "All", "None", or any combination of the keywords:
252    #   AllowOverride FileInfo AuthConfig Limit
253    #
254    AllowOverride None
255
256    #
257    # Controls who can get stuff from this server.
258    #
259    Require all granted
260</Directory>
261
262#
263# DirectoryIndex: sets the file that Apache will serve if a directory
264# is requested.
265#
266<IfModule dir_module>
267    DirectoryIndex index.php index.html
268</IfModule>
269<FilesMatch \.php$>
270    SetHandler application/x-httpd-php
271</FilesMatch>
272
273#
274# The following lines prevent .htaccess, .htpasswd and .DS_Store files and
275# Mac resource forks and named forks from being viewed by Web clients.
276#
277<Files ~ "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
278    Require all denied
279</Files>
280<Files "rsrc">
281    Require all denied
282</Files>
283<DirectoryMatch ".*\.\.namedfork">
284    Require all denied
285</DirectoryMatch>
286
287#
288# ErrorLog: The location of the error log file.
289# If you do not specify an ErrorLog directive within a <VirtualHost>
290# container, error messages relating to that virtual host will be
291# logged here.  If you *do* define an error logfile for a <VirtualHost>
292# container, that host's errors will be logged there and not here.
293#
294ErrorLog "var/log/apache2/error_log"
295
296#
297# LogLevel: Control the number of messages logged to the error_log.
298# Possible values include: debug, info, notice, warn, error, crit,
299# alert, emerg.
300#
301LogLevel error
302
303<IfModule log_config_module>
304    #
305    # The following directives define some format nicknames for use with
306    # a CustomLog directive (see below).
307    #
308    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
309    LogFormat "%h %l %u %t \"%r\" %>s %b" common
310
311    <IfModule logio_module>
312      # You need to enable mod_logio.c to use %I and %O
313      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
314    </IfModule>
315
316    #
317    # The location and format of the access logfile (Common Logfile Format).
318    # If you do not define any access logfiles within a <VirtualHost>
319    # container, they will be logged here.  Contrariwise, if you *do*
320    # define per-<VirtualHost> access logfiles, transactions will be
321    # logged therein and *not* in this file.
322    #
323    CustomLog "var/log/apache2/access_log" common
324
325    #
326    # If you prefer a logfile with access, agent, and referer information
327    # (Combined Logfile Format) you can use the following directive.
328    #
329    #CustomLog "var/log/apache2/access_log" combined
330</IfModule>
331
332<IfModule alias_module>
333    #
334    # Redirect: Allows you to tell clients about documents that used to
335    # exist in your server's namespace, but do not anymore. The client
336    # will make a new request for the document at its new location.
337    # Example:
338    # Redirect permanent /foo http://www.example.com/bar
339
340    #
341    # Alias: Maps web paths into filesystem paths and is used to
342    # access content that does not live under the DocumentRoot.
343    # Example:
344    # Alias /webpath /full/filesystem/path
345    #
346    # If you include a trailing / on /webpath then the server will
347    # require it to be present in the URL.  You will also likely
348    # need to provide a <Directory> section to allow access to
349    # the filesystem path.
350
351    #
352    # ScriptAlias: This controls which directories contain server scripts.
353    # ScriptAliases are essentially the same as Aliases, except that
354    # documents in the target directory are treated as applications and
355    # run by the server when requested rather than as documents sent to the
356    # client.  The same rules about trailing "/" apply to ScriptAlias
357    # directives as to Alias.
358    #
359    ScriptAlias /cgi-bin/ "/opt/local/www/apache2/cgi-bin/"
360
361</IfModule>
362
363<IfModule cgid_module>
364    #
365    # ScriptSock: On threaded servers, designate the path to the UNIX
366    # socket used to communicate with the CGI daemon of mod_cgid.
367    #
368    #Scriptsock cgisock
369</IfModule>
370
371#
372# "/opt/local/www/apache2/cgi-bin" should be changed to whatever your ScriptAliased
373# CGI directory exists, if you have that configured.
374#
375<Directory "/opt/local/www/apache2/cgi-bin">
376    AllowOverride None
377    Options None
378    Require all granted
379</Directory>
380
381<IfModule headers_module>
382    #
383    # Avoid passing HTTP_PROXY environment to CGI's on this or any proxied
384    # backend servers which have lingering "httpoxy" defects.
385    # 'Proxy' request header is undefined by the IETF, not listed by IANA
386    #
387    RequestHeader unset Proxy early
388</IfModule>
389
390<IfModule mime_module>
391    #
392    # TypesConfig points to the file containing the list of mappings from
393    # filename extension to MIME-type.
394    #
395    TypesConfig etc/apache2/mime.types
396
397    #
398    # AddType allows you to add to or override the MIME configuration
399    # file specified in TypesConfig for specific file types.
400    #
401    #AddType application/x-gzip .tgz
402    #
403    # AddEncoding allows you to have certain browsers uncompress
404    # information on the fly. Note: Not all browsers support this.
405    #
406    #AddEncoding x-compress .Z
407    #AddEncoding x-gzip .gz .tgz
408    #
409    # If the AddEncoding directives above are commented-out, then you
410    # probably should define those extensions to indicate media types:
411    #
412    AddType application/x-compress .Z
413    AddType application/x-gzip .gz .tgz
414
415    #
416    # AddHandler allows you to map certain file extensions to "handlers":
417    # actions unrelated to filetype. These can be either built into the server
418    # or added with the Action directive (see below)
419    #
420    # To use CGI scripts outside of ScriptAliased directories:
421    # (You will also need to add "ExecCGI" to the "Options" directive.)
422    #
423    #AddHandler cgi-script .cgi
424
425    # For type maps (negotiated resources):
426    #AddHandler type-map var
427
428    #
429    # Filters allow you to process content before it is sent to the client.
430    #
431    # To parse .shtml files for server-side includes (SSI):
432    # (You will also need to add "Includes" to the "Options" directive.)
433    #
434    #AddType text/html .shtml
435    #AddOutputFilter INCLUDES .shtml
436</IfModule>
437
438#
439# The mod_mime_magic module allows the server to use various hints from the
440# contents of the file itself to determine its type.  The MIMEMagicFile
441# directive tells the module where the hint definitions are located.
442#
443#MIMEMagicFile etc/apache2/magic
444
445#
446# Customizable error responses come in three flavors:
447# 1) plain text 2) local redirects 3) external redirects
448#
449# Some examples:
450#ErrorDocument 500 "The server made a boo boo."
451#ErrorDocument 404 /missing.html
452#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
453#ErrorDocument 402 http://www.example.com/subscription_info.html
454#
455
456#
457# MaxRanges: Maximum number of Ranges in a request before
458# returning the entire resource, or one of the special
459# values 'default', 'none' or 'unlimited'.
460# Default setting is to accept 200 Ranges.
461#MaxRanges unlimited
462
463#
464# EnableMMAP and EnableSendfile: On systems that support it,
465# memory-mapping or the sendfile syscall may be used to deliver
466# files.  This usually improves server performance, but must
467# be turned off when serving from networked-mounted
468# filesystems or if support for these functions is otherwise
469# broken on your system.
470# Defaults: EnableMMAP On, EnableSendfile Off
471#
472#EnableMMAP off
473#EnableSendfile on
474
475# Supplemental configuration
476#
477# The configuration files in the etc/apache2/extra/ directory can be
478# included to add extra features or to modify the default configuration of
479# the server, or you may simply copy their contents here and change as
480# necessary.
481
482# Server-pool management (MPM specific)
483#Include etc/apache2/extra/httpd-mpm.conf
484
485# Multi-language error messages
486#Include etc/apache2/extra/httpd-multilang-errordoc.conf
487
488# Fancy directory listings
489#Include etc/apache2/extra/httpd-autoindex.conf
490
491# Language settings
492#Include etc/apache2/extra/httpd-languages.conf
493
494# User home directories
495Include etc/apache2/extra/httpd-userdir.conf
496
497# Real-time info on requests and configuration
498#Include etc/apache2/extra/httpd-info.conf
499
500# Virtual hosts
501#Include etc/apache2/extra/httpd-vhosts.conf
502
503# Local access to the Apache HTTP Server Manual
504Include etc/apache2/extra/httpd-manual.conf
505
506# Distributed authoring and versioning (WebDAV)
507#Include etc/apache2/extra/httpd-dav.conf
508
509# Various default settings
510#Include etc/apache2/extra/httpd-default.conf
511
512# Configure mod_proxy_html to understand HTML4/XHTML1
513<IfModule proxy_html_module>
514Include etc/apache2/extra/proxy-html.conf
515</IfModule>
516
517# php 7.2 configuration
518Include etc/apache2/extra/mod_php73.conf
519
520# Secure (SSL/TLS) connections
521#Include etc/apache2/extra/httpd-ssl.conf
522#
523# Note: The following must must be present to support
524#       starting without SSL on platforms with no /dev/random equivalent
525#       but a statically compiled-in mod_ssl.
526#
527<IfModule ssl_module>
528SSLRandomSeed startup builtin
529SSLRandomSeed connect builtin
530</IfModule>
531