我在安装 nginx 时遇到 phpmyadmin 问题。
当我进入<ServerIP>/phpmyadmin
并登录时,我被重定向到<ServerIP>/index.php?<tokenstuff>
而不是<ServerIP>/phpmyadmin/index.php?<tokenstuff>
Nginx 配置文件:
user nginx;
worker_processes 5;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 2;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
默认.conf:
server {
listen 80;
server_name _;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.php index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root /usr/share/nginx/html;
try_files $uri =404;
fastcgi_pass unix:/tmp/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
location /phpmyadmin {
root /usr/share/;
index index.php index.html index.htm;
location ~ ^/phpmyadmin/(.+\.php)$ {
try_files $uri =404;
root /usr/share/;
fastcgi_pass unix:/tmp/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $request_filename;
include fastcgi_params;
fastcgi_param PATH_INFO $fastcgi_script_name;
}
location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
root /usr/share/;
}
}
}
(关于整理这些配置文件的任何一般提示也被接受)
尽管作者已经解决了重新安装 phpMyAdmin 的问题,但仍需要正确配置 nginx 才能正确处理登录时的重定向。
经过几天在键盘上敲打我的头,我终于找到了真正的解决方案,我在这里分享,因为这个线程在谷歌搜索中仍然具有很高的优先级。
如链接所述:http: //www.samundra.com.np/use-phpmyadmin-with-nginx-and-php7/1374
要解决这个问题,您应该将以下代码块添加到您的 nginx 默认站点可用,您将通过以下方式访问它:
将此块放在
server
块中:我希望有一天这能帮助某人......
这个问题是由 cgi.fix_pathinfo = 0 禁用 PHP-FPM 当前路径的常见配置引起的。一种快速解决方案是将 cgi.fix_pathinfo 改回 1,或者在 nginx 的虚拟服务器块上设置路径参数。
你的问题似乎与此类似:https ://stackoverflow.com/questions/1011101/nginx-location-directive-doesnt-seem-to-be-working-am-i-missing-something
如果通过阅读并改变你的配置你仍然有问题请告诉!
这听起来不像是 nginx 问题。这听起来像 phpMyAdmin 没有正确安装,并认为它是在
/
而不是/phpmyadmin
。检查您的 phpMyAdmin 配置。打开:
添加:
请参阅:
https ://docs.phpmyadmin.net/en/latest/config.html#basic-settings
.
使用任何域名(例如 phpmyadmin1.com)将虚拟主机添加到您的灯服务器
编辑您的主机文件
在底部添加这一行
保存并关闭,然后重启你的服务器
在浏览器上访问您的虚拟主机 url,您会看到 phpmyadmin 登录页面
http://screencloud.net/v/nGK5
http://screencloud.net/v/6M8r
只有这个对我有用
来自 Ubuntu 16.04 及更高版本存储库的 phpMyAdmin 无法正确重定向。
我只是从官方 phpmyadmin 站点下载新版本的 phpmyadmin:
打开 config.inc.php:
并在 ' 之间放置一些随机字符
在浏览器中保存并打开您的域/phpmyadmin
您也可以更改指向 phpmyadmin 的链接(为了更好的安全性)并从 nginx 添加基本身份验证到链接:
现在你的 phpmyadmin 在https://domain/anything上工作,让我们添加一些密码:
现在打开你的 nginx 配置(默认情况下:sudo nano /etc/nginx/sites-available/default)并添加 befor last }
启用配置存储:
找到以下行:
改成:
定位:
取消注释它们(删除//)
现在保存并退出。
转到您的 mysql (默认情况下:sudo mysql -u root -p)
现在尝试在浏览器中打开域/任何东西