Welcome! Log In Create A New Profile

Advanced

Re: nginx serving corrupt images

All files from this thread

File Name File Size   Posted by Date  
image.png 46.7 KB open | download Dan Swaney 02/23/2023 Read message
image.png 46.7 KB open | download Saint Michael 02/23/2023 Read message
image.png 276 KB open | download Saint Michael 02/23/2023 Read message
image.png 109.2 KB open | download Saint Michael 02/23/2023 Read message
image.png 46.7 KB open | download Dan Swaney 02/23/2023 Read message
image.png 276 KB open | download Dan Swaney 02/23/2023 Read message
image.png 109.2 KB open | download Dan Swaney 02/23/2023 Read message
image.png 46.7 KB open | download Saint Michael 02/23/2023 Read message
image.png 276 KB open | download Saint Michael 02/23/2023 Read message
image.png 109.2 KB open | download Saint Michael 02/23/2023 Read message
image.png 46.7 KB open | download Dan Swaney 02/23/2023 Read message
image.png 276 KB open | download Dan Swaney 02/23/2023 Read message
image.png 109.2 KB open | download Dan Swaney 02/23/2023 Read message
image.png 188.7 KB open | download Dan Swaney 02/23/2023 Read message
image.png 46.7 KB open | download Saint Michael 02/23/2023 Read message
image.png 276 KB open | download Saint Michael 02/23/2023 Read message
image.png 109.2 KB open | download Saint Michael 02/23/2023 Read message
image.png 188.7 KB open | download Saint Michael 02/23/2023 Read message
image.png 46.7 KB open | download Dan Swaney 02/23/2023 Read message
image.png 276 KB open | download Dan Swaney 02/23/2023 Read message
image.png 109.2 KB open | download Dan Swaney 02/23/2023 Read message
image.png 188.7 KB open | download Dan Swaney 02/23/2023 Read message
Saint Michael
February 22, 2023 09:32PM
how would this line look?
try_files $uri $uri/ /index.html;
and how do set I the error log to the max level for this particular server
{}?
I am not getting any errors in /var/log/nginx/error.log


On Wed, Feb 22, 2023 at 9:28 PM Maxim Dounin <mdounin@mdounin.ru> wrote:

> Hello!
>
> On Wed, Feb 22, 2023 at 07:35:54PM -0500, Saint Michael wrote:
>
> > a) The error does not have a single line.
> > b) restarting does not fix it
> > c) my nginx is no acting as proxy
>
> So it's certainly unrelated to the article about proxying and
> error propagation you've previously linked.
>
> > d) it happened twice and both times I fixed it by turning gzip off,
> > restarting, and back on.
> > e) I also noticed that I requested the image file with wget, get a full
> > HTML file for the whole document, but named as if it were the image file.
> >
> > wget https://x3x.us/index_files/image001.jpg
> > but `stat image001.jpg' showed it was the entire text HTML file.
>
> Your configuration contains:
>
> try_files $uri $uri/ /index.html;
>
> so returning "/index.html" for all non-existing files is what
> nginx is configured to do.
>
> Are you sure the file you are requesting actually exists? Is the
> file system with these files local, or it's something distributed
> and/or some network filesystem? Are files static, or generated
> and/or synced from somewhere?
>
> You may want to try removing the "try_files" directive, so nginx
> will be able to properly respond with 404 on non-existing files,
> and will log errors with details about attempts to request them.
> Such errors will look like:
>
> 2023/02/23 05:16:25 [error] 80125#100117: *1 open() "/path/to/file" failed
> (2: No such file or directory), client: ...
>
> This should help to identify exact files being requested, so
> you'll be able to check them manually, as will contain exact error
> code, so it will be possible to identify various permission
> issues.
>
> Hope this helps.
>
> --
> Maxim Dounin
> http://mdounin.ru/
> _______________________________________________
> nginx mailing list
> nginx@nginx.org
> https://mailman.nginx.org/mailman/listinfo/nginx
>
_______________________________________________
nginx mailing list
nginx@nginx.org
https://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

FAQ Suggestions

iaw4 February 18, 2023 08:30PM

Re: FAQ Suggestions

nanaya February 19, 2023 01:28AM

Private location does not work

Saint Michael February 19, 2023 01:54AM

Re: Private location does not work

Francis Daly February 19, 2023 08:20AM

Re: Private location does not work

Saint Michael February 19, 2023 09:36AM

Re: Private location does not work

unclepieman February 19, 2023 10:34PM

Re: Private location does not work

Saint Michael February 19, 2023 10:56PM

Re: Private location does not work

unclepieman February 19, 2023 11:00PM

Re: Private location does not work

Saint Michael February 19, 2023 11:26PM

Re: Private location does not work

unclepieman February 19, 2023 11:54PM

Re: Private location does not work

Saint Michael February 20, 2023 12:06AM

Re: Private location does not work

Francis Daly February 20, 2023 07:36AM

Re: Private location does not work

unclepieman February 20, 2023 01:22PM

Re: Private location does not work

Saint Michael February 20, 2023 02:46PM

foreach does not work

Saint Michael February 21, 2023 02:24AM

foreach does not work

Saint Michael February 21, 2023 02:26AM

Re: foreach does not work

Sergey A. Osokin February 21, 2023 10:30AM

nginx serving corrupt images

Saint Michael February 22, 2023 10:58AM

Re: nginx serving corrupt images

Saint Michael February 22, 2023 02:04PM

Re: nginx serving corrupt images

Saint Michael February 22, 2023 02:06PM

Re: nginx serving corrupt images

Sergey A. Osokin February 22, 2023 02:34PM

Re: nginx serving corrupt images

Saint Michael February 22, 2023 02:48PM

Re: nginx serving corrupt images

Maxim Dounin February 22, 2023 07:18PM

Re: nginx serving corrupt images

Saint Michael February 22, 2023 07:38PM

Re: nginx serving corrupt images

Maxim Dounin February 22, 2023 09:30PM

Re: nginx serving corrupt images

Saint Michael February 22, 2023 09:32PM

Re: nginx serving corrupt images

Maxim Dounin February 22, 2023 09:50PM

Re: nginx serving corrupt images

Saint Michael February 22, 2023 10:52PM

RE: nginx serving corrupt images

Reinis Rozitis February 23, 2023 06:34AM

Re: nginx serving corrupt images

Maxim Dounin February 23, 2023 08:04AM

Re: nginx serving corrupt images

Saint Michael February 23, 2023 08:16AM

Re: nginx serving corrupt images

Maxim Dounin February 23, 2023 09:18AM

Re: nginx serving corrupt images Attachments

Dan Swaney February 23, 2023 06:16PM

Re: nginx serving corrupt images Attachments

Saint Michael February 23, 2023 07:24PM

Re: nginx serving corrupt images Attachments

Dan Swaney February 23, 2023 08:12PM

Re: nginx serving corrupt images Attachments

Saint Michael February 23, 2023 09:28PM

Re: nginx serving corrupt images Attachments

Dan Swaney February 23, 2023 09:34PM

Re: nginx serving corrupt images

Maxim Dounin February 23, 2023 10:28PM

Re: nginx serving corrupt images

Dan Swaney February 23, 2023 10:36PM

Re: nginx serving corrupt images

Maxim Dounin February 23, 2023 11:14PM

Re: nginx serving corrupt images

Saint Michael February 23, 2023 11:28PM

Re: nginx serving corrupt images

Saint Michael February 23, 2023 11:48PM

Re: nginx serving corrupt images Attachments

Saint Michael February 23, 2023 10:32PM

Re: nginx serving corrupt images Attachments

Dan Swaney February 23, 2023 10:42PM

Re: nginx serving corrupt images

Dan Swaney February 23, 2023 06:24PM

Re: nginx serving corrupt images

Saint Michael February 23, 2023 06:34PM

Re: nginx serving corrupt images

Saint Michael February 23, 2023 06:36PM

Re: nginx serving corrupt images

Maxim Dounin February 23, 2023 09:44PM

Re: FAQ Suggestions

iaw4 February 19, 2023 08:52PM

Re: FAQ Suggestions

nanaya February 20, 2023 02:12AM

Re: FAQ Suggestions

Francis Daly February 19, 2023 08:38AM

Re: FAQ Suggestions

iaw4 February 19, 2023 08:52PM

Re: FAQ Suggestions

Francis Daly February 20, 2023 07:08AM

Re: FAQ Suggestions --- mapping to file, not folder?

iaw4 February 22, 2023 12:46PM

Re: FAQ Suggestions --- mapping to file, not folder?

Sergey A. Osokin February 22, 2023 01:06PM

Re: FAQ Suggestions --- mapping to file, not folder?

Francis Daly February 22, 2023 04:24PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 188
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready