-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstatic.tdwg.org.conf
36 lines (27 loc) · 1.03 KB
/
static.tdwg.org.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
# This file is part of the tdwg/infrastructure.git repository.
<VirtualHost *:80>
ServerName static.tdwg.org
ErrorLog logs/static_error
CustomLog logs/static_log vhost
Redirect permanent / https://static.tdwg.org/
</VirtualHost>
<VirtualHost *:443>
ServerName static.tdwg.org
ErrorLog logs/static_error
CustomLog logs/static_log vhosthttps
DocumentRoot /var/www/html/static.tdwg.org
<Location />
Options +Indexes
</Location>
AddDefaultCharset UTF-8
Alias /autoindex/ /var/www/html/autoindex/
<Directory /var/www/html/autoindex/>
Require all granted
</Directory>
IndexOptions IgnoreCase FancyIndexing HTMLTable SuppressHTMLPreamble FoldersFirst VersionSort NameWidth=* SuppressDescription XHTML IconHeight=16 IconWidth=16 Charset=UTF-8
IndexStyleSheet placeholder.css
HeaderName /autoindex/header.html
ReadmeName /autoindex/footer.html
IndexIgnore .??*
SSLEngine On
</VirtualHost>