This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| HTTPPort 8090 | |
| HTTPBindAddress 0.0.0.0 | |
| MaxHTTPConnections 200 | |
| MaxClients 100 | |
| MaxBandWidth 500000 | |
| CustomLog - | |
| <Feed camera.ffm> | |
| File /tmp/camera.ffm | |
| FileMaxSize 200M |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| declare -A args | |
| while [[ "$#" > "0" ]]; do | |
| case "$1" in | |
| (*=*) | |
| _key="${1%%=*}" && _key="${_key/--/}" && _val="${1#*=}" | |
| args[${_key}]="${_val}" | |
| # (>&2 echo -e "key:val => ${_key}:${_val}") | |
| ;; | |
| esac | |
| shift |
OlderNewer