Owncloud PHP模块cURL

问题描述 投票:1回答:1

我尝试在我的覆盆子pi上安装自己的云。当我拨打网址时,它会显示我:

enter image description here

我使用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;
    }
}
php curl nginx owncloud
1个回答
0
投票

我知道这篇文章大约有2年了,但我现在几乎遇到了与php7.2相同的问题。我将我的服务器从Ubuntus LTS版本16更新到18.我的问题和你的一样,我从php7.2(包括fpm和curl)安装了所有内容,但是当我尝试使用Web客户端时,我得到了相同的消息:

PHP模块cURL未安装。请联系您的服务器管理员并要求安装该模块。 PHP模块已经安装,但是被列为缺失?请与您的服务器管理员联系,并要求重新启动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服务器;)

© www.soinside.com 2019 - 2024. All rights reserved.