calibre-web-companion/deployment/entrypoints/config.json
MassiveAtoms f34200901e i give up
2021-03-02 00:31:38 -03:00

34 lines
850 B
JSON

{
"listeners": {
"*:80": {
"pass": "routes"
}
},
"routes": [
{
"match": {"uri": "/static/*"},
"action": {"share": "/usr/src/app/CalibreWebCompanion/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"
}
}
}
}