nginx was checking if the file request_filename existed at each request.
Fixes the following issue:
2026/04/13 21:10:27 [crit] 97679#103893: *336960 stat() "request_filename" failed (13: Permission denied)
This is a follow-up for 79263880.
Differential D4063
Fix Zed nginx config stat issue Authored by dereckson on Mon, Apr 13, 21:34. Tags None Referenced Files
Subscribers None
Details
nginx was checking if the file request_filename existed at each request. Fixes the following issue: This is a follow-up for 79263880.
Diff Detail
Event TimelineComment Actions This is a temporary fix to fix the current error. In a longer term, the nginx configuration should evolve in a try_files block and use a separate location for caching. Not easy because Dojo has a lot of extensions. For example, we would like to do something like: location ~* \.(css|js|png|jpg|jpeg|gif|ico|svg|webp|avif|woff|woff2|ttf|eot)$ {
expires 30d;
access_log off;
log_not_found off;
}But Dojo has files css|gif|gz|html|ico|jpg|js|json|mov|png|svg|ttf|txt|xml|xsd|xsl + legacy stuff like swf/fla/htc |