Razique Mahroua
2019-12-16 b640959db1a97290fae22c3f3e3af5551c5881db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
ServerRoot "/etc/httpd"
Listen 8080
Include conf.modules.d/*.conf
User apache
Group apache
PidFile /var/run/httpd/httpd.pid
ServerAdmin root@localhost
 
<Directory />
  AllowOverride none
  Require all denied
</Directory>
 
DocumentRoot "/var/www/html"
 
<Directory "/var/www">
  AllowOverride None
  # Allow open access:
  Require all granted
</Directory>
 
# Further relax access to the default document root:
<Directory "/var/www/html">
  Options Indexes FollowSymLinks
  AllowOverride None
  Require all granted
</Directory>
 
<IfModule dir_module>
  DirectoryIndex index.html
</IfModule>
 
#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<Files ".ht*">
  Require all denied
</Files>
 
# Changed by Steve Pousty
# ErrorLog "logs/error_log"
ErrorLog "|/bin/more"
LogLevel warn
 
<IfModule log_config_module>
  LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  LogFormat "%h %l %u %t \"%r\" %>s %b" common
 
  <IfModule logio_module>
    # You need to enable mod_logio.c to use %I and %O
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
  </IfModule>
 
  CustomLog "|/bin/more" combined
</IfModule>
 
<IfModule alias_module>
  ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
</IfModule>
 
<Directory "/var/www/cgi-bin">
  AllowOverride None
  Options None
  Require all granted
</Directory>
 
<IfModule mime_module>
  TypesConfig /etc/mime.types
  AddType application/x-compress .Z
  AddType application/x-gzip .gz .tgz
  AddType text/html .shtml
  AddOutputFilter INCLUDES .shtml
</IfModule>
 
AddDefaultCharset UTF-8
 
<IfModule mime_magic_module>
    MIMEMagicFile conf/magic
</IfModule>
 
EnableSendfile on
IncludeOptional conf.d/*.conf