kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 81a09a04d650b8274745a56bb71ffe3d1fb81f62
parent a160a9e7ff324b767ea54793d0a56212362a4ae8
Author: Joris Vink <joris@coders.se>
Date:   Wed,  7 Apr 2021 14:52:41 +0200

Use route instead of old static/dynamic.

Diffstat:
conf/kore.conf.example | 28++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/conf/kore.conf.example b/conf/kore.conf.example @@ -299,24 +299,24 @@ domain localhost { accesslog /var/log/kore_access.log # Page handlers with no authentication required. - static /css/style.css serve_style_css - static / serve_index - static /intro.jpg serve_intro - static /b64test serve_b64test - static /upload serve_file_upload - static /lock-test serve_lock_test - static /validator serve_validator - static /params-test serve_params_test - static /private serve_private + route /css/style.css serve_style_css + route / serve_index + route /intro.jpg serve_intro + route /b64test serve_b64test + route /upload serve_file_upload + route /lock-test serve_lock_test + route /validator serve_validator + route /params-test serve_params_test + route /private serve_private # Restrict some URIs to certain methods restrict /private post restrict /validator post get head # Page handlers with authentication. - static /private/test serve_private_test auth_example + route /private/test serve_private_test auth_example - # Allow access to files from the directory static_files via + # Allow access to files from the directory route_files via # the /files/ URI. # # Note the directory given must be relative to the root configuration @@ -370,7 +370,7 @@ domain localhost { # client_verify /other/ca.crt # client_verify_depth 1 -# static /css/style.css serve_style_css -# static / serve_index -# dynamic ^/[a-z0-9_]*$ serve_profile +# route /css/style.css serve_style_css +# route / serve_index +# route ^/[a-z0-9_]*$ serve_profile #}