Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Verified Commit 4ac93aa1 authored by Nivesh Krishna's avatar Nivesh Krishna
Browse files

do not log for image_proxy route

parent a6256c97
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -14,10 +14,18 @@ server {
  location = /search {
    include /etc/nginx/proxy_spot_params;
  }
  location = /image_proxy {
    access_log    off;
    log_not_found off;
    include /etc/nginx/proxy_spot_params;
  }
  location / {
    try_files $uri @searx;
    access_log    off;
    log_not_found off;
  }
  location @searx {
    access_log  /dev/stdout main;
    include /etc/nginx/proxy_spot_params;
  }
}