mirror of
https://github.com/jorisvink/kore
synced 2025-03-10 13:09:02 -04:00
18 lines
293 B
Plaintext
Executable File
18 lines
293 B
Plaintext
Executable File
# Placeholder configuration
|
|
|
|
bind 127.0.0.1 8888
|
|
load ./video_stream.so init
|
|
|
|
tls_dhparam dh2048.pem
|
|
|
|
http_keepalive_time 600
|
|
|
|
domain * {
|
|
certfile cert/server.pem
|
|
certkey cert/key.pem
|
|
accesslog access.log
|
|
|
|
static / asset_serve_video_html
|
|
dynamic ^/[a-z]*.[a-z0-9]{3}$ video_stream
|
|
}
|