23 lines
752 B
INI
23 lines
752 B
INI
# This file is part of photo21
|
|
# Copyright (C) 2022 Amicale des élèves de l'ENS Paris-Saclay
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
[uwsgi]
|
|
# www-data can write media
|
|
uid = www-data
|
|
gid = www-data
|
|
# Django-related settings
|
|
# the base directory (full path)
|
|
chdir = /var/www/photos/photo21
|
|
# the virtualenv (full path)
|
|
home = /var/www/photos/photo21/venv
|
|
wsgi-file = /var/www/photos/photo21/photo21/wsgi.py
|
|
plugin = python3
|
|
# process-related settings
|
|
master = true
|
|
# maximum number of worker processes
|
|
processes = 10
|
|
# socket with appropriate permissions in /var/run/uwsgi/app/uwsgi_photos/socket
|
|
chmod-socket = 664
|
|
# clear environment on exit
|
|
vacuum = true
|