mirror of
https://github.com/jorisvink/kore
synced 2025-03-21 10:19:01 -04:00
Kore will automatically detect if a route is a dynamic or static one so there is no need for the configuration options to differ anymore.
29 lines
495 B
Plaintext
29 lines
495 B
Plaintext
# python-async configuration
|
|
|
|
server notls {
|
|
tls no
|
|
bind 127.0.0.1 8888
|
|
}
|
|
|
|
python_path src
|
|
|
|
python_import ./src/setup.py
|
|
python_import ./src/async_lock.py
|
|
python_import ./src/async_queue.py
|
|
python_import ./src/async_process.py
|
|
python_import ./src/async_socket.py
|
|
python_import ./src/async_http.py
|
|
|
|
domain * {
|
|
attach notls
|
|
|
|
route /queue async_queue
|
|
route /lock async_lock
|
|
route /proc async_proc
|
|
|
|
route /socket async_socket
|
|
route /socket-test socket_test
|
|
|
|
route /httpclient httpclient
|
|
}
|