Re: Nginx does not serve avif

2022-10-07 Thread Martin Wolfert
/location ~ \.(jpg|png)$ {/ ) for sure could not match! So disabling the webp caching compatibilty in WP Rocket solves the problem. Thanks to Francis to have opened my thinking that Nginx would be the problem! Best, Martin Am 07.10.22 um 12:04 schrieb Martin Wolfert: Hi, well, i would say

Re: Nginx does not serve avif

2022-10-07 Thread Martin Wolfert
. Chrome 106.0.5249.103)  ... I have no clue. I really hope the Chrome developers do not distinguish between Chrome on Arm (MacBook M1 & M2) and Intel. Best, Martin Am 06.10.22 um 23:43 schrieb Francis Daly: On Thu, Oct 06, 2022 at 02:30:08PM +0200, Martin Wolfert wrote: Hi there, In &

Re: Nginx does not serve avif

2022-10-06 Thread Martin Wolfert
t;$uri.avif"; } and then in the vhost:     location ~* ^.+\.(jpg|jpeg)$ {    add_header Vary Accept;   try_files $avif_suffix $webp_suffix $uri =404;     } Both solutions does not deliver .afiv files via e.g. Firefox. - Martin Am 28.09.22 um 23:

Nginx does not serve avif

2022-09-28 Thread Martin Wolfert
Hi, i want to use new image files. That means: first serve (if available) avif, than webp and lastly jpg images. I configured this in ... nginx.conf: map $http_accept $img_ext {     "~*avif"   ".avif";     "~*webp"   ".webp";     "~*jpg"    ".jpg"

Re: Allow /.well-known/acme-challenge but deny dot files

2017-04-04 Thread Martin Wolfert
Hi, try this: # Allow access to the letsencrypt ACME Challenge location ~ /\.well-known\/acme-challenge { allow all; } Best, Martin Am 04.04.2017 um 10:33 schrieb basti: Hello, at the Moment I use this config # Deny access to all .invisible files. location ~ /\. { deny all; access_log

HTTP/2 stable status

2015-12-06 Thread Martin Wolfert
Hey, has anyone experiences with nginx 1.9.7 and http/2 in pruduction environments? Means: is http/2 stable in 1.9.7 ? Best, Martin ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx