68aa064e93
Relates-To: #105 Change-Id: I948b48c5c8bacf21dd220b9975124e0bccf1fa58
59 lines
1.5 KiB
ApacheConf
59 lines
1.5 KiB
ApacheConf
ServerRoot "/etc/httpd"
|
|
Listen [::]:80
|
|
Include conf.modules.d/*.conf
|
|
User apache
|
|
Group apache
|
|
ServerAdmin root@localhost
|
|
<Directory />
|
|
AllowOverride none
|
|
Require all denied
|
|
</Directory>
|
|
DocumentRoot "/shared/html"
|
|
<Directory "/shared">
|
|
AllowOverride None
|
|
Require all granted
|
|
</Directory>
|
|
<Directory "/shared/html">
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride None
|
|
Require all granted
|
|
</Directory>
|
|
<IfModule dir_module>
|
|
DirectoryIndex index.html
|
|
</IfModule>
|
|
<Files ".ht*">
|
|
Require all denied
|
|
</Files>
|
|
ErrorLog /dev/stderr
|
|
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 /dev/stderr 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
|