[Пробовал все ответы на Stackoverflow и много искал в Google, но ни одна из конфигураций не сработала.]
Я установил сервер LEMP в Fedora, используя руководство по DigitalOcean (https://www.digitalocean.com/community/articles/how-to-install-linux-nginx-mysql-php-lemp-stack-on-centos-6). Заменен example.com в default.conf nginx на localhost.
Затем я установил phpMyAdmin с помощью этого (https://www.digitalocean.com/community/articles/how-to-install-phpmyadmin-on-a-lemp-server).
Веб-каталог nginx / usr / share / nginx / html. Я создал символическую ссылку для phpmyadmin. Это в / usr / share / nginx / html / phpMyAdmin.
В настоящее время мне просто нужен доступ к локальному хосту (локальный / phpmyadmin). Я могу получить доступ к localhost и localhost / info.php.
Я перепробовал много конфигураций, одна из них ниже: Директива Nginx location не работает. Я что-то упускаю?
Но не работает. Иногда я получаю сообщение «Не указан входной файл». а в других случаях 404 не найдено. Я хотел бы иметь доступ на локальный / phpmyadmin.
Изменить: мой файл default.conf. Получение сообщения «Не указан входной файл». ошибка в браузере.
#
# The default server
#
server {
#listen 80 default_server;
listen 80;
server_name localhost;
#server_name _;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.php index.html index.htm;
}
location /phpmyadmin {
alias /usr/share/nginx/html/phpMyAdmin;
index index.php index.html index.htm;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/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 ~ /phpMyAdmin/.*\.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html/$uri;
include fastcgi_params;
}
location ~ \.php$ {
root /usr/share/nginx/html;
fastcgi_pass 127.0.0.1:9000;
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;
#}
}
Спасибо.
Для тебя 404
, вы должны сделать так, чтобы регистры символов соответствовали всем phpmyadmin
(все строчные буквы) или phpMyAdmin
.
Чтобы сделать конфигурацию более понятной (мое мнение), вы можете использовать вложенные location
s:
location /phpmyadmin/ {
index index.php index.html index.htm;
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html/$uri;
include fastcgi_params;
}
}
Затем вам нужно повторно связать phpMyAdmin
в вашем веб-корне (обратите внимание на отсутствие alias
директива):
unlink /usr/share/nginx/html/phpMyAdmin
ln -s /usr/share/phpMyAdmin /usr/share/nginx/html/phpmyadmin
location /phpmyadmin
to internally change the $uri
(required to find the files): rewrite ^/phpmyadmin(.*)$ /phpMyAdmin$1;
500
, you might want to check out еще один ответ на SF об ограничениях PHP. I just now realized that executing PHP scripts outside the webroot can trigger security mechanisms.location
matches.