Loading...
Хостинги/Домены | NGIX помощь
Помогите применить это решение проблемы к моей конфигурации ngix от openservera, чет не получается у меня.

"I think I found what is happening.

Livewire use Laravel signed routes for preview urls and it cannot work with an nginx location directive that targets all images. Livewire previews images requests needs to be passed to Laravel.

Here's a workaround.

Livewire preview urls looks like this:
https://my-app.com/livewire/preview-file/{temp-file-name}.png?expires={some-hash}

So we can target every request uri that contains /livewire (or /preview-file) and pass them to Laravel.
And then cache all other static files as you were doing before."


# Pass request to Laravel for any file in a livwire dir.

location ^~ /livewire {
try_files $uri $uri/ /index.php?$query_string;
}


# Cache static files as usual
location ~* \.(?:ico|css|js|gif|jpe?g|png|svg|woff)$ {
expires 10d;
access_log off;
add_header Cache-Control "public";
}

------
82975_Apache_2.4PHP_8.08.1Nginx_1.21_vhostn.txt (4.4 Kb)
Скачиваний: 115
Онлайн: 6
Время: 12:52:22
Gen. 0.0598
(c) ByMAS.RU 2010-2025