You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
245 B

  1. location /etesync/static {
  2. access_log off;
  3. error_log /dev/null;
  4. expires 1y;
  5. try_files $uri $uri/ =404;
  6. }
  7. location /etesync {
  8. access_log off;
  9. error_log /dev/null;
  10. include uwsgi_params;
  11. uwsgi_pass unix:///var/run/etesync-server.socket;
  12. }