Проблема с сервером VPS: *1 ошибка connect() (отказано в соединении 111) при подключении к восходящему nginx

По какой-то причине я не могу заставить работать мой веб-сайт. Я выполнил все шаги из развертывания веб-сайта DevMarketer Laravel, но получаю следующую ошибку:

502 Bad Gateway
nginx/1.16.1 (Ubuntu)

Я знаю, что есть проблема с настройкой Nginx, но, увидев много ответов от похожих проблем, я не смог заставить это работать. Ниже мой файл nnginx.conf:

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

    root /var/www/mydomain/public;

    index index.php index.html index.htm;

    server_name mydomain.com;

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

    location ~ \.php$ {
            include snippets/fastcgi-php.conf;
            fastcgi_pass 127.0.0.1:9000;
    }

    location ~ /\.ht {
            deny all;
    }
}

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: http://trac.nginx.org/nginx/ticket/321
set $path_info $fastcgi_path_info;
fastcgi_param PATH_INFO $path_info;

fastcgi_index index.php;
include fastcgi.conf;

Мой веб-сайт Laravel включает базу данных и работает на PHP 7.3. Поставщик сервера называется Vultr.

Помощь будет высоко ценится.

0 ответов

Другие вопросы по тегам