packages/net/etesync-server/files/etesync.locations
Peter Stadler 18e51ca442 etesync-server: add package
Setup pyhton3-django-etesync-journal using uWSGI with Nginx.

Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
2020-05-06 21:48:37 +02:00

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;
}