]> git.ipfire.org Git - people/mfischer/ipfire-2.x.git/blame_incremental - config/httpd/httpd.conf
Merge branch 'master' of ssh://git.ipfire.org/pub/git/ipfire-2.x
[people/mfischer/ipfire-2.x.git] / config / httpd / httpd.conf
... / ...
CommitLineData
1# Apache2 server configuration file for IPFire
2
3# run under this user/group id
4Include /etc/httpd/conf/uid.conf
5
6# - how many server processes to start (server pool regulation)
7# - usage of KeepAlive
8Include /etc/httpd/conf/server-tuning.conf
9
10# ErrorLog: The location of the error log file
11ErrorLog /var/log/httpd/error_log
12
13# Load Modules here
14Include /etc/httpd/conf/loadmodule.conf
15
16# IP addresses and ports to listen on
17Include /etc/httpd/conf/listen.conf
18
19# predefined logging formats
20Include /etc/httpd/conf/mod_log_config.conf
21
22# global settings
23Include /etc/httpd/conf/global.conf
24
25# associate MIME types with filename extensions
26TypesConfig /etc/mime.types
27
28# global (server-wide) SSL configuration, that is not specific to any virtual host
29Include /etc/httpd/conf/ssl-global.conf
30
31<Directory />
32 Options None
33 AllowOverride None
34</Directory>
35
36# use .htaccess files for overriding,
37AccessFileName .htaccess
38# and never show them
39<Files ~ "^\.ht">
40 Require all denied
41</Files>
42
43# List of resources to look for when the client requests a directory
44DirectoryIndex index.html index.htm index.shtml index.cgi
45
46# 'Main' server configuration
47Include /etc/httpd/conf/default-server.conf
48
49# Virtual server configuration
50Include /etc/httpd/conf/vhosts.d/*.conf
51
52# EOF