Setup pyhton3-django-etesync-journal using uWSGI with Nginx. Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
13 lines
245 B
Text
13 lines
245 B
Text
location /etesync/static {
|
|
access_log off;
|
|
error_log /dev/null;
|
|
expires 1y;
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
|
|
location /etesync {
|
|
access_log off;
|
|
error_log /dev/null;
|
|
include uwsgi_params;
|
|
uwsgi_pass unix:///var/run/etesync-server.socket;
|
|
}
|