nginx unit works

This commit is contained in:
MassiveAtoms
2021-03-05 10:32:42 -03:00
parent f34200901e
commit 7b033454b3
9 changed files with 124 additions and 65 deletions

View File

@@ -6,14 +6,30 @@
},
"routes": [
{
"match": {"uri": "/static/*"},
"action": {"share": "/usr/src/app/CalibreWebCompanion/static"}
"match": {
"uri": [
"/content/*",
"!~\\.db"
]
},
"action": {
"share": "/app/"
}
},
{
"match": {"uri": "/download/*"},
"action": {"share": "/usr/src/app/calibredir"}
"match": {
"uri": "/static/*"
},
"action": {
"share": "/app/CalibreWebCompanion/"
}
},
{
"match": {
"uri": [
"!~\\.db", "*"
]
},
"action": {
"pass": "applications/django"
}
@@ -22,12 +38,16 @@
"applications": {
"django": {
"type": "python 3",
"path": "/usr/src/app/CalibreWebCompanion/",
"path": "/app/CalibreWebCompanion/",
"module": "CalibreWebCompanion.wsgi",
"environment": {
"DJANGO_SETTINGS_MODULE": "CalibreWebCompanion.settings",
"DB_ENGINE": "django.db.backends.sqlite3"
},
"processes" : {
"max": 25,
"spare": 1,
"idle_timeout": 20
}
}
}

View File

@@ -1,5 +1,22 @@
path=/usr/src/app/CalibreWebCompanion
chown -R unit:unit /usr/src/app
CAL_DIR="/app/content/"
DATA_DIR="/app/data/"
CWC_PATH="/app/CalibreWebCompanion"
if [ ! -d "$CAL_DIR" ]; then
echo "Calibre Library not mounted at the correct location."
echo "Mount it at /app/content/"
echo "Exiting..."
exit 1
fi
python "${path}/manage.py" makemigrations
python "${path}/manage.py" migrate
if [ ! -d "$DATA_DIR" ]; then
echo "A data directory not mounted at the correct location, exiting"
echo "This is used to store the database and logs"
echo "mount something at /app/data/"
echo "exiting"
exit 1
fi
cp -R -u -p "/app/CalibreWebCompanion/db.sqlite3" "/app/data/"
ls -l /app
python "${CWC_PATH}/manage.py" makemigrations
python "${CWC_PATH}/manage.py" migrate