-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgacl.conf
73 lines (57 loc) · 1.68 KB
/
gacl.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
#Listen 80
DocumentRoot /var/www/grid/data/
<VirtualHost *:80>
ServerName MY_HOSTNAME
DocumentRoot /var/www/grid/data/
<Directory />
Options FollowSymLinks Indexes
AllowOverride None
</Directory>
</VirtualHost>
<IfModule mod_ssl.c>
Listen 443
<VirtualHost *:443>
ServerName MY_HOSTNAME
DocumentRoot /var/www/grid/data/
<Directory />
Options FollowSymLinks Indexes
AllowOverride None
</Directory>
SSLEngine on
SSLCertificateFile /var/www/grid/hostcert.pem
SSLCertificateKeyFile /var/www/grid/hostkey_unenc.pem
SSLCACertificatePath /var/www/grid/certificates
SSLVerifyClient optional
SSLVerifyDepth 10
SSLOptions +ExportCertData +StdEnvVars
<IfModule mod_gacl.c>
alias /gridfactory /var/spool/gridfactory
alias /db /var/spool/db
<Location /gridfactory>
Require all granted
#AuthName "authentication realm"
#AuthBasicAuthoritative Off
<IfModule mod_dav.c>
DAV on
# Without this, larger uploads fail randomly
LimitXMLRequestBody 0
# Without this, the following is reported in the log:
# "Broken pipe: core_output_filter: writing data to the network"
# See http://httpd.apache.org/docs/2.0/faq/error.html
EnableSendfile Off
</IfModule>
AuthScriptFile /usr/share/gridfactory/mk_vo.sh
DefaultPermission read
#VOTimeoutSeconds 300
#GACLRoot "/var/spool"
</Location>
</IfModule>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#LogLevel warn
LogLevel info
CustomLog /var/log/apache2/access.log combined
ServerSignature On
</VirtualHost>
</IfModule>