1
0
mirror of https://github.com/jorisvink/kore synced 2025-03-25 12:19:02 -04:00

29 lines
501 B
Plaintext
Raw Normal View History

2018-11-22 15:23:44 +01:00
# python-async configuration
listen 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
2018-11-22 15:23:44 +01:00
static /queue async_queue
static /lock async_lock
static /proc async_proc
2018-11-23 22:34:09 +01:00
static /socket async_socket
static /socket-test socket_test
static /httpclient httpclient
2018-11-22 15:23:44 +01:00
}