blob: 558bdad8ceb61845c1d95d1890b8413c5745f6a1 (
plain) (
blame)
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
|
Log {
Level = Warning
UseLogFile = true
NativeStackTrace = true
InjectedStackTrace = true
}
Debug {
FullBacktrace = true
ServerStackTrace = true
ServerErrorMessage = true
TranslateSource = true
}
Server {
EnableStaticContentCache = false
EnableStaticContentFromDisk = true
AlwaysUseRelativePath = true
}
VirtualHost {
* {
ServerName = localhost
Pattern = .
RewriteRules {
* {
pattern = ^/wiki/(.*)$
to = /index.php?title=$1
qsa = true
}
}
}
}
|