XF 2.2 Ошибка при входе на страницу установки

Версия XenForo
2.2.10

NeynQ

Проверенные
Сообщения
75
Решения
2
Реакции
16
Баллы
35
Screenshot_2022-07-26-22-54-56-067_com.android.chrome.jpg


Ссылка -
Конфиг:

worker_processes 1;

events {
worker_connections 1024;
}


http {
include mime.types;
default_type application/octet-stream;

sendfile on;

keepalive_timeout 65;

types_hash_max_size 4096;

server {
listen 80 default_server;
listen [::]:80 default_server;

root /var/www/html;

index index.php index.html index.htm index.nginx-debian.html;

server_name forum.amok.dev;

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

location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
}
}
}
}
 
А на VPS по Вашему, что-ли, не нужно перезапускать службу веб-сервера при изменении конфигурации? :)
nginx я перезагружал, (service nginx reload), что-то еще нужно перезагуржать?
 


Screenshot_2022-07-27-00-20-01-340_com.android.chrome.jpg

Нет, не нужно.
PHP-FPM запущен? stat что говорит, если ему скормить путь к сокету? Права везде совпадают?
помоги пожалуйста

Нет, не нужно.
PHP-FPM запущен? stat что говорит, если ему скормить путь к сокету? Права везде совпадают?
~# stat /run/php/php7.4-fpm.sock
File: /run/php/php7.4-fpm.sock
Size: 0 Blocks: 0 IO Block:
4096 socket
Device: 1ah/26dInode: 612 Links: 1
Access: (0660/srw-rw----) Uid: ( 33/www-data) G
id: ( 33/www-data)
Access: 2022-07-26 22:10:39.148770537 +0300
Modify: 2022-07-26 22:10:39.148770537 +0300
Change: 2022-07-26 22:10:39.148770537 +0300
Birth: -

Нет, не нужно.
PHP-FPM запущен? stat что говорит, если ему скормить путь к сокету? Права везде совпадают?
а на счет прав, не знаю как проверить

переустановил, но такая же проблема

с этим

если заходить по этой ссылке, будет 404
 
Последнее редактирование модератором:
nginx -T под спойлер
Так же владельца файлов движка проверить (веб сервер www-data должен иметь права беспрепятственно читать и выполнять их).
 
nginx -T под спойлер
Так же владельца файлов движка проверить (веб сервер www-data должен иметь права беспрепятственно читать и выполнять их).
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful # configuration file /etc/nginx/nginx.conf: worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; types_hash_max_size 4096; server { listen 80 default_server; server_name forum.amok.dev; location / { root /var/www/html; index index.php index.html index.htm index.nginx-debian.html; } location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php7.4-fpm.sock; } } } # configuration file /etc/nginx/mime.types: types {
text/html html htm shtml;
text/css css;
text/xml xml;
image/gif gif;
image/jpeg jpeg jpg;
application/javascript js;
application/atom+xml atom;
application/rss+xml rss;

text/mathml mml;
text/plain txt;
text/vnd.sun.j2me.app-descriptor jad;
text/vnd.wap.wml wml;
text/x-component htc;

image/png png;
image/tiff tif tiff;
image/vnd.wap.wbmp wbmp;
image/x-icon ico;
image/x-jng jng;
image/x-ms-bmp bmp;
image/svg+xml svg svgz;
image/webp webp;

application/font-woff woff;
application/java-archive jar war ear;
application/json json;
application/mac-binhex40 hqx;
application/msword doc;
application/pdf pdf;
application/postscript ps eps ai;
application/rtf rtf;
application/vnd.apple.mpegurl m3u8;
application/vnd.ms-excel xls;
application/vnd.ms-fontobject eot;
application/vnd.ms-powerpoint ppt;
application/vnd.wap.wmlc wmlc;
application/vnd.google-earth.kml+xml kml;
application/vnd.google-earth.kmz kmz;
application/x-7z-compressed 7z;
application/x-cocoa cco;
application/x-java-archive-diff jardiff;
application/x-java-jnlp-file jnlp;
application/x-makeself run;
application/x-perl pl pm;
application/x-pilot prc pdb;
application/x-rar-compressed rar;
application/x-redhat-package-manager rpm;
application/x-sea sea;
application/x-shockwave-flash swf;
application/x-stuffit sit;
application/x-tcl tcl tk;
application/x-x509-ca-cert der pem crt;
application/x-xpinstall xpi;
application/xhtml+xml xhtml;
application/xspf+xml xspf;
application/zip zip;

application/octet-stream bin exe dll;
application/octet-stream deb;
application/octet-stream dmg;
application/octet-stream iso img;
application/octet-stream msi msp msm;

application/vnd.openxmlformats-officedocument.wordprocessingml.document docx;
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx;
application/vnd.openxmlformats-officedocument.presentationml.presentation pptx;

audio/midi mid midi kar;
audio/mpeg mp3;
audio/ogg ogg;
audio/x-m4a m4a;
audio/x-realaudio ra;

video/3gpp 3gpp 3gp;
video/mp2t ts;
video/mp4 mp4;
video/mpeg mpeg mpg;
video/quicktime mov;
video/webm webm;
video/x-flv flv;
video/x-m4v m4v;
video/x-mng mng;
video/x-ms-asf asx asf;
video/x-ms-wmv wmv;
video/x-msvideo avi;
}

# configuration file /etc/nginx/snippets/fastcgi-php.conf:
# regex to split $uri to $fastcgi_script_name and $fastcgi_path
fastcgi_split_path_info ^(.+?\.php)(/.*)$;

# Check that the PHP script exists before passing it
try_files $fastcgi_script_name =404;

# Bypass the fact that try_files resets $fastcgi_path_info
# see:
set $path_info $fastcgi_path_info;
fastcgi_param PATH_INFO $path_info;

fastcgi_index index.php;
include fastcgi.conf;

# configuration file /etc/nginx/fastcgi.conf:

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;

fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT $document_root;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param REQUEST_SCHEME $scheme;
fastcgi_param HTTPS $https if_not_empty;

fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;

fastcgi_param REMOTE_ADDR $remote_addr;
fastcgi_param REMOTE_PORT $remote_port;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;

# PHP only, required if PHP was built with --enable-force-cgi-redirect
fastcgi_param REDIRECT_STATUS 200;

File: /run/php/php7.4-fpm.sock
Size: 0 Blocks: 0 IO Block: 4096 socket
Device: 1ah/26dInode: 546 Links: 1
Access: (0660/srw-rw----) Uid: ( 33/www-data) Gid: ( 33/www-data)
Access: 2022-07-27 03:19:02.033316623 +0300
Modify: 2022-07-27 03:19:02.033316623 +0300
Change: 2022-07-27 03:19:02.033316623 +0300
Birth: -
 
Последнее редактирование:
А вытащите-ка root и index директивы за пределы location /, чтобы они в server оказались.
теперь появилась ошибка 502: Bad gateway

Я вот не понимаю, почему в первый раз все установилось нормально, а когда я сервер переустановил, все перестало получаться :(
 
NeynQ, 502 может выскакивать по разным причинам. Тут лучше уже лог ковырять.
Но теперь хотя бы понятно, что nginx пытается постучаться к PHP.
● nginx.service - A high performance web server and a reverse proxy server
Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
Active: active (running) since Wed 2022-07-27 14:54:54 MSK; 1h 18min ago
Docs: man:nginx(8)
Process: 26227 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
Process: 26236 ExecStart=/usr/sbin/nginx -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
Process: 26343 ExecReload=/usr/sbin/nginx -g daemon on; master_process on; -s reload (code=exited, status=0/SUCCESS)
Main PID: 26238 (nginx)
Tasks: 2 (limit: 1102)
Memory: 2.1M
CGroup: /system.slice/nginx.service
├─26238 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
└─26344 nginx: worker process

Jul 27 14:54:54 vm396350 systemd[1]: Starting A high performance web server and a reverse proxy server...
Jul 27 14:54:54 vm396350 systemd[1]: Started A high performance web server and a reverse proxy server.
Jul 27 14:56:13 vm396350 systemd[1]: Reloading A high performance web server and a reverse proxy server.
Jul 27 14:56:13 vm396350 systemd[1]: Reloaded A high performance web server and a reverse proxy server.
Jul 27 14:58:33 vm396350 systemd[1]: Reloading A high performance web server and a reverse proxy server.
Jul 27 14:58:33 vm396350 systemd[1]: Reloaded A high performance web server and a reverse proxy server.
 
Современный облачный хостинг провайдер | Aéza
Назад
Сверху Снизу