mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
Drop privileges
This commit is contained in:
parent
2ccb006d2a
commit
ef1c485082
2 changed files with 6 additions and 0 deletions
|
@ -3,10 +3,14 @@
|
||||||
|
|
||||||
# Create data folder if it does not exist
|
# Create data folder if it does not exist
|
||||||
mkdir -p data
|
mkdir -p data
|
||||||
|
|
||||||
# Run database migration
|
# Run database migration
|
||||||
python manage.py migrate
|
python manage.py migrate
|
||||||
# Generate secret key file if it does not exist
|
# Generate secret key file if it does not exist
|
||||||
python manage.py generate_secret_key
|
python manage.py generate_secret_key
|
||||||
|
|
||||||
|
# Ensure the DB folder is owned by the right user
|
||||||
|
chown -R www-data: /etc/linkding/data
|
||||||
|
|
||||||
# Start uwsgi server
|
# Start uwsgi server
|
||||||
uwsgi uwsgi.ini
|
uwsgi uwsgi.ini
|
||||||
|
|
|
@ -9,3 +9,5 @@ threads = 2
|
||||||
pidfile = /tmp/linkding.pid
|
pidfile = /tmp/linkding.pid
|
||||||
vacuum=True
|
vacuum=True
|
||||||
stats = 127.0.0.1:9191
|
stats = 127.0.0.1:9191
|
||||||
|
uid = www-data
|
||||||
|
gid = www-data
|
||||||
|
|
Loading…
Reference in a new issue