• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Question NGINX 404 Problem since about July 27th 2017

Floezen

Basic Pleskian
Hi,

I had configured nginx about 1 or 2 years ago with

Code:
#Leverage Browser caching
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
    expires 30d;
    log_not_found off;
}

Since about 27th of July static files of one directory are not served anymore with that configuration:

404 Not Found
nginx

I did not change any configuration, but maybe some updated changed something.

I also could not find out the difference to other directories, but content of other directories is served.

So
/var/www/vhosts/mydomain.tld/httpdocs/files/test.jpg
is not served, but
/var/www/vhosts/mydomain.tld/httpdocs/test/test.jpg
is served.

The proxy_error_log shows:

Code:
2017/08/17 22:38:35 [error] 27305#0: *14973507 open() "/var/www/vhosts/mydomain.tld/httpdocs/internal-nginx-static-location/files/test.jpg" failed (2: No such file or directory), client: 78.51.220.39, server: mydomain.tld, request: "GET /files/test.jpg HTTP/2.0", upstream: "https://37.61.xxx.xxx:7081/files/test.jpg", host: "www.mydomain.tld"

So maybe this error has to do with this not existing directory "internal-nginx-static-location", but I have no idea how and where to fix this problem...

Any suggestions?

Thanx
Flözen
 
It looks like that you have custom nginxDomainVirtualHost.php template where this "internal-nginx-static-location" is specified. Please check it and remove custom vhost template.
 
Back
Top