我正在尝试使用LEMP安装程序在Linux VPS中安装wordpress站点。到目前为止,我已经完成了在WP目录/文件上设置wordpress文件和设置nginx用户/组的所有权,但是当我去地址访问WP(https://domain.tld/wp-admin/install.php)的安装页面时,我结束了改为使用php文件下载。
这是WP网站的虚拟主机配置:
server {
listen 80;
server_name domain.tld;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl;
ssl on;
ssl_certificate /directory/to/crt;
ssl_certificate_key /directory/to/key;
server_name domain.tld;
root /var/www/html/domain.tld;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_index index.php;
include fastcgi_params;
}
}
编辑:我在Firefox中试过它,它的行为与Chrome不同。 install.php页面最终会出现在这样的错误页面中:
发生错误。
抱歉,您要查找的页面目前无法使用。 请稍后再试。
如果您是此资源的系统管理员,则应检查>错误日志了解详情。
忠实于你,nginx。
答案 0 :(得分:0)
我现在就开始工作了。错误发生在虚拟主机的* .conf文件中。我得到了php-fpm sock的目录错误。所以这就是php不在网站上工作的原因,而只是下载了install.php文件,而域名最终出错了。
fastcgi_pass unix:/var/run/php5-fpm.sock; < ----我刚刚把这个目录弄错了。
答案 1 :(得分:0)
也许只是你忘了开始你的php-fpm
$phar->extractto()
../ sbin / php-fpm