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


root@663318:~# ls -la /www/phpbb
ls: cannot access '/www/phpbb': No such file or directory
root@663318:~# ls -la /var /www/phpbb
ls: cannot access '/www/phpbb': No such file or directory
/var:
total 60
drwxr-xr-x 14 root root  4096 Aug  8 22:56 .
drwxr-xr-x 23 root root  4096 Aug  8 21:51 ..
-rw-r--r--  1 root root   208 Feb 10  2026 .updated
drwxr-xr-x  2 root root  4096 Aug 13 08:16 backups
drwxr-xr-x 14 root root  4096 Aug  9 11:02 cache
drwxrwsrwt  2 root root  4096 Feb 10  2026 crash
drwxr-xr-x 42 root root  4096 Aug 13 08:16 lib
drwxrwsr-x  2 root staff 4096 Apr 22  2024 local
lrwxrwxrwx  1 root root     9 Feb 10  2026 lock -> /run/lock
drwxr-xr-x 12 root root  4096 Aug 13 08:16 log
drwxrwsr-x  2 root mail  4096 Feb 10  2026 mail
drwxr-xr-x  2 root root  4096 Feb 10  2026 opt
lrwxrwxrwx  1 root root     4 Feb 10  2026 run -> /run
drwxr-xr-x  2 root root  4096 Nov 21  2025 snap
drwxr-xr-x  2 root root  4096 Feb 10  2026 spool
drwxrwxrwt  6 root root  4096 Aug 13 08:25 tmp
drwxr-xr-x  5 root root  4096 Aug 12 22:20 www
root@663318:~# ls -la /www/phpbb/config.php
ls: cannot access '/www/phpbb/config.php': No such file or directory
root@663318:~# sudo nginx -T | grep -E "server_name|root|listen"
2026/08/13 08:33:05 [warn] 39058#39058: conflicting server name "_" on 0.0.0.0:80, ignored
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
	# server_names_hash_bucket_size 64;
	# server_name_in_redirect off;
#		listen     localhost:110;
#		listen     localhost:143;
    listen 80;
    server_name _;
    root /var/www/phpbb;
fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
fastcgi_param  DOCUMENT_ROOT      $document_root;
fastcgi_param  SERVER_NAME        $server_name;
    listen 127.0.0.1:8081;
    server_name _;
    root /usr/share/phpmyadmin;
    listen 80 default_server;
    server_name _;
    root /var/www/xenforo;
root@663318:~# ls -la /etc/nginx/sites-enabled/
total 8
drwxr-xr-x 2 root root 4096 Aug 13 06:43 .
drwxr-xr-x 8 root root 4096 Aug  8 22:56 ..
lrwxrwxrwx 1 root root   32 Aug 10 19:24 phpbb -> /etc/nginx/sites-available/phpbb
lrwxrwxrwx 1 root root   37 Aug  9 11:14 phpmyadmin -> /etc/nginx/sites-available/phpmyadmin
lrwxrwxrwx 1 root root   34 Aug 13 06:43 xenforo -> /etc/nginx/sites-available/xenforo