Я развернул свое приложение laravel, и оно работает нормально. Мой файл по умолчанию
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html/partex-star/public;
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html;
server_name 103.209.11.41;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
# # With php-cgi (or other tcp sockets):
# fastcgi_pass 127.0.0.1:9000;
}
}
И затем я добавляю эти коды для доступа к моему phpmyadmin по адресу http :: // ip_address / PhpMyAdmin. Но теперь он показывает 404. Не найдено.
location /phpmyadmin {
alias /usr/share/nginx/html/phpmyadmin;
try_files $uri @phpmyadmin;
allow 103.209.11.41;
deny all;
index index.php;
location ~* \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.2-fpm.sock;
fastcgi_param SCRIPT_FILENAME $request_filename;
include fastcgi_params;
}
}
Я уже создал символическую ссылку.