По какой-то причине я не могу заставить мой сайт работать. Я выполнил все шаги по развертыванию веб-сайта 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.
Помощь будет очень признательна.