我尝试在我的覆盆子pi上安装自己的云。 当我拨打网址时,它会显示我:
我使用nginx和php-fpm,我不知道,怎么回事错了.. 的phpinfo();效果很好!
我希望,你可以帮助我!
谢谢你,祝你有愉快的一天;)
的/ etc / nginx的/网站启用
upstream php-handler {
server 127.0.0.1:9000;
server unix:/var/run/php5-fpm.sock;
}
server {
listen 80;
server_name [my ip];
return 301 https://$server_name$request_uri; # enforce https
}
server {
listen 443 ssl;
server_name [my ip];
ssl_certificate /var/www/ssl/cloudssl.crt;
ssl_certificate_key /var/www/ssl/cloudssl.key;
# Path to the root of your installation
root /var/www/cloud;
client_max_body_size 10G;
# set max upload size
fastcgi_buffers 64 4K;
rewrite ^/caldav(.*)$ /remote.php/caldav$1 redirect;
rewrite ^/carddav(.*)$ /remote.php/carddav$1 redirect;
rewrite ^/webdav(.*)$ /remote.php/webdav$1 redirect;
index index.html index.php;
error_page 403 /core/templates/403.php;
error_page 404 /core/templates/404.php;
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
location ~ ^/(data|config|\.ht|db_structure\.xml|README) {
deny all;
}
location / {
# The following 2 rules are only needed with webfinger
rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last;
rewrite ^/.well-known/carddav /remote.php/carddav/ redirect;
rewrite ^/.well-known/caldav /remote.php/caldav/ redirect;
rewrite ^(/core/doc/[^\/]+/)$ $1/index.html;
try_files $uri $uri/ index.php;
}
location ~ ^(.+?\.php)(/.*)?$ {
try_files $1 = 404;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$1;
fastcgi_param PATH_INFO $2;
fastcgi_param HTTPS on;
fastcgi_pass 127.0.0.1:9000;
}
location ~* ^.+\.(jpg|jpeg|gif|bmp|ico|png|css|js|swf)$ {
expires 30d;
access_log off;
}
}
答案 0 :(得分:0)
我知道这篇文章大约2岁了,但是现在我对php7.2遇到了几乎相同的问题。我将服务器从Ubuntus LTS版本16更新到了18。 我的问题与您的问题相同,我安装了php7.2中的所有内容(包括fpm和curl),但是当我尝试使用Web客户端时却收到了相同的消息:
PHP模块cURL可以安装。限制服务器管理员和受过限制的安装模块的工作。 PHP模块wurden installiert,werden aber als noch fehlend gelistet?服务器管理员和受限制的Web服务器的管理员。
我在我的nginx配置中解决了这个问题!在那里,我有条目:
upstream mycloud {
server unix:/var/run/php/php7.0-fpm.sock;
}
将此更改为:
upstream mycloud {
server unix:/var/run/php/php7.2-fpm.sock;
}
当然还有fastcgi条目:
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
为此付出了一段时间,但现在它就像一种魅力:)我希望这会在以后使用nginx php-fpm服务器帮助某人;)