Whenever I put an expiry on js files in my nginx config, the comment system's js files return 404. It's running behind a reverse proxy serving to /isso.
location ~* \.js {
expires 60d;
}
Is the issue, but I can't seem to ignore the files in /isso/js with this glob.
Whenever I put an expiry on js files in my nginx config, the comment system's js files return 404. It's running behind a reverse proxy serving to
/isso
.Is the issue, but I can't seem to ignore the files in
/isso/js
with this glob.