С чем я работаю: экземпляр - amazon EC2, ОС - linux AMI, веб-сервер - nginx
Я установил phpmyadmin в соответствии с тем, что указано в документации AWS здесь
У меня запущен и работает mysql, а также php-fpm и nginx.Я также создал символическую ссылку между каталогом, где phpMyAdmin т.е. / var / www / html / phpMyAdmin -> / usr / share / nginx / www / html
ниже, это то, что у меня есть в моем файле nginx.conf
server{
listen 80;
server_name localhost;
root /var/www/html/phpMyAdmin;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
# redirect server error pages to the static page /40x.html
#
error_page 404 /404.html;
location = /40x.html {
}
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
#location ^~ /phpMyAdmin/ {
# root /var/www/html/phpMyAdmin;
# index index.php;
# include fastcgi_params;
# fastcgi_pass unix:/var/run/php-fpm.sock;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME script/$fastcgi_script_name;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root /var/www/html/phpMyAdmin;
fastcgi_index index.php;
fastcgi_pass unix:/var/run/php-fpm.sock;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
}
Но, похоже, ничего из этого не работает.Я пытаюсь из часов, но не могу понять, в чем может быть проблема, из-за которой он не работает.любая помощь будет очень полезной.Спасибо!