Joomla 4.3.2 with nginx dont show preview

Общие вопросы, относящиеся к системе Joomla! 4.x.
Post Reply
Baurzhan
Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Tue Apr 30, 2024 2:04 pm

Joomla 4.3.2 with nginx dont show preview

Post by Baurzhan » Tue Apr 30, 2024 2:23 pm

Joomla 4.3.2 with nginx dont show preview, help me. Only several pictures can view pteview. I haven't been able to solve the problem for a month now

My nginx config
nginx.conf: |
server {
listen 80;
index index.php index.html;
client_max_body_size 160m;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
# Set nginx to serve files from the shared volume!
root /var/www/html;
server_name _;
location /api/ {
client_max_body_size 160m;
try_files $uri $uri/ /api/index.php?$args;
}
location /administrator/ {
try_files $uri $uri/ /administrator/index.php?$args;
}
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php:9000;
fastcgi_index index.php;
include fastcgi_params;
client_max_body_size 160m;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
}
You do not have the required permissions to view the files attached to this post.

Baurzhan
Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Tue Apr 30, 2024 2:04 pm

Re: Joomla 4.3.2 with nginx dont show preview

Post by Baurzhan » Fri May 03, 2024 5:06 am

I have solved this problem!


Post Reply

Return to “Joomla 4.x - Задайте здесь свой вопрос по поддержке”