mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-10 16:25:47 +00:00
40 lines
692 B
JSON
40 lines
692 B
JSON
{
|
|
"listeners": {
|
|
"*:8000": {
|
|
"pass": "routes"
|
|
}
|
|
},
|
|
"routes": [
|
|
{
|
|
"action": {
|
|
"share": "/var/www/castopod/public$uri",
|
|
"fallback": {
|
|
"pass": "applications/castopod"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"applications": {
|
|
"castopod": {
|
|
"type": "php",
|
|
"root": "/var/www/castopod/public/",
|
|
"script": "index.php"
|
|
}
|
|
},
|
|
"access_log": {
|
|
"path": "/dev/stdout"
|
|
},
|
|
"settings": {
|
|
"http": {
|
|
"body_read_timeout": $CP_TIMEOUT,
|
|
"max_body_size": $CP_MAX_BODY_SIZE_BYTES,
|
|
"static": {
|
|
"mime_types": {
|
|
"text/vtt": [".vtt"],
|
|
"text/srt": [".srt"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|