-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathdojo-basic
More file actions
59 lines (41 loc) · 1.39 KB
/
Copy pathdojo-basic
File metadata and controls
59 lines (41 loc) · 1.39 KB
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
<VirtualHost 127.42.84.1:80>
ServerAdmin webmaster@localhost
# Redirect permanent / https://dojo-basic/
DocumentRoot /usr/share/samurai-dojo/basic
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /usr/share/samurai-dojo/basic/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/dojo-basic-error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/dojo-basic-access.log combined
</VirtualHost>
<VirtualHost 127.42.84.1:443>
ServerAdmin webmaster@localhost
DocumentRoot /usr/share/samurai-dojo/basic
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /usr/share/samurai-dojo/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
SSLEngine on
SSLCertificateFile /usr/share/samurai-dojo/ssl.crt
ErrorLog ${APACHE_LOG_DIR}/dojo-basic-error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/dojo-basic-access.log combined
</VirtualHost>