kore/examples/video_stream/conf/video_stream.conf

23 lines
323 B
Plaintext
Raw Normal View History

2014-08-10 19:33:43 +02:00
# Placeholder configuration
listen tls {
bind 127.0.0.1 8888
}
2014-08-10 19:33:43 +02:00
load ./video_stream.so init
tls_dhparam dh2048.pem
2014-08-10 19:33:43 +02:00
http_keepalive_time 600
domain * {
attach tls
certfile cert/server.pem
certkey cert/key.pem
2014-08-10 19:33:43 +02:00
accesslog access.log
2018-05-03 21:40:50 +02:00
static / asset_serve_video_html
2014-08-10 19:33:43 +02:00
dynamic ^/[a-z]*.[a-z0-9]{3}$ video_stream
}