11 lines
165 B
Plaintext
11 lines
165 B
Plaintext
|
fn hello_init {
|
||
|
if(~ $req_path /hello) {
|
||
|
handler_body_main='hello_body'
|
||
|
pageTitle='Hi title!'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn hello_body {
|
||
|
echo 'Hello world!'
|
||
|
}
|