14 lines
245 B
Text
14 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;
|
||
|
}
|