calibre-web-companion/deployment/entrypoints/config.json
2021-03-02 00:09:15 -03:00

47 lines
1.0 KiB
JSON

{
"listeners": {
"*:80": {
"pass": "routes"
}
},
"routes": [
{
"match": {
"uri": "/static/*"
},
"action": {
"share": "/usr/src/app/CalibreWebCompanion/static"
}
},
{
"action": {
"share": "/static/"
}
},
{
"match": {
"uri": "/download/*"
},
"action": {
"share": "/usr/src/app/calibredir/"
}
},
{
"action": {
"pass": "applications/django"
}
}
],
"applications": {
"django": {
"type": "python 3",
"path": "/usr/src/app/CalibreWebCompanion/",
"module": "CalibreWebCompanion.wsgi",
"environment": {
"DJANGO_SETTINGS_MODULE": "CalibreWebCompanion.settings",
"DB_ENGINE": "django.db.backends.sqlite3"
}
}
}
}