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
|
<VirtualHost *:80>
ServerAdmin webmaster@fsij.org
ServerName www.fsij.org
DocumentRoot "/home/www/fsij-homepage-html/"
<Directory "/home/www/fsij-homepage-html/">
DirectoryIndex index.html
Options None
AllowOverride None
Order allow,deny
allow from all
</Directory>
<Directory "/home/www/fsij-homepage-html/.git">
Options None
AllowOverride None
Order deny,allow
deny from all
</Directory>
<Directory "/home/www/fsij-homepage-html/openpgpkey">
Options None
AllowOverride None
Order deny,allow
deny from all
</Directory>
ServerSignature On
Protocols h2 http/1.1
LogLevel error
ErrorLog /var/log/apache2/fsij-error.log
CustomLog /var/log/apache2/fsij-access.log combined
# Historical
RedirectMatch ^/wiki$ /
RedirectMatch ^/gnuk/?$ /category/gnuk.html
RedirectMatch ^/monthly-meetings/?$ /category/monthly-meetings.html
</VirtualHost>
|