Загрузка данных


server {
    listen 80;
    server_name _;

    root /var/www/xenforo;
    index index.php;

    client_max_body_size 128M;

    location / {
        try_files $uri $uri/ /index.php?$uri&$args;
    }

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/run/php/php8.3-fpm.sock;
    }

    location ~ /\. {
        deny all;
    }
}