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


sudo nginx -T 2>&1 | sed -n '/listen 127.0.0.1:8082/,/}/p'
    listen 127.0.0.1:8082;
    server_name phpbb.local;

    root /var/www/phpbb;
    index index.php index.html;

    client_max_body_size 128M;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }
root@663318:~# sudo nginx -T 2>&1 | sed -n '/listen 127.0.0.1:8081/,/}/p'
    listen 127.0.0.1:8081;
    server_name _;

    root /usr/share/phpmyadmin;
    index index.php;

    client_max_body_size 128M;
    client_body_timeout 600s;
    send_timeout 600s;

    location / {
        try_files $uri $uri/ =404;
    }