forked from AutoDQM/AutoDQM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttpd.conf
119 lines (93 loc) · 2.44 KB
/
httpd.conf
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
ServerRoot "/etc/httpd"
Listen 8083
Include conf.modules.d/*.conf
PassEnv HOME
PassEnv REQUESTS_CA_BUNDLE
PassEnv ADQM_SSLCERT
PassEnv ADQM_SSLKEY
PassEnv ADQM_DB
PassEnv ADQM_TMP
PassEnv ADQM_PUBLIC
PassEnv ADQM_CONFIG
PassEnv ADQM_PLUGINS
User apache
Group apache
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 5
ServerAdmin [email protected]
ServerName 0.0.0.0
<Directory />
AllowOverride none
Require all denied
</Directory>
Alias "/dqm/autodqm/results/" "/var/www/results/"
ScriptAlias "/dqm/autodqm/cgi-bin/" "/var/www/cgi-bin/"
Alias "/dqm/autodqm/" "/var/www/public/"
DocumentRoot "/var/www/public"
<Directory "/var/www">
AllowOverride None
Options FollowSymLinks
Require all granted
</Directory>
<Directory "/var/www/public">
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
# Settings for react router
RewriteEngine On
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.html [L]
# Rewrite everything else to index.html to allow html5 state links
</Directory>
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
<Directory "${ADQM_TMP}">
Options None
Require all granted
</Directory>
<Directory "/var/www/cgi-bin">
AllowOverride None
Require all granted
Options Indexes FollowSymLinks
</Directory>
<Directory "/var/www/results">
AllowOverride None
Require all granted
Options Indexes FollowSymLinks
</Directory>
<IfModule alias_module>
Alias /tmp/ "${ADQM_TMP}"
Alias /results/ "/var/www/results/"
</IfModule>
<Files ".ht*">
Require all denied
</Files>
# changed error log location from
ErrorLog "/home/error_log"
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>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
CustomLog "/home/access_log" combined
</IfModule>
<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