kore/examples/python-async/conf/python-async.conf

29 lines
495 B
Plaintext
Raw Normal View History

2018-11-22 15:23:44 +01:00
# python-async configuration
server notls {
tls no
bind 127.0.0.1 8888
}
2018-11-22 15:23:44 +01:00
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
2018-11-23 22:34:09 +01:00
python_import ./src/async_socket.py
python_import ./src/async_http.py
2018-11-22 15:23:44 +01:00
domain * {
attach notls
route /queue async_queue
route /lock async_lock
route /proc async_proc
2018-11-23 22:34:09 +01:00
route /socket async_socket
route /socket-test socket_test
route /httpclient httpclient
2018-11-22 15:23:44 +01:00
}