[具有nextcloud和nginx代理的lxc:未知:POST内容长度

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

我有两个lxc容器。一个是使用nginx和此配置的代理:

server {

    server_name cloud.malte-kiefer.de;

    location / {
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_pass http://cloud.lxd;
    }

    real_ip_header proxy_protocol;
    set_real_ip_from 127.0.0.1;

    listen [::]:443 ssl http2 proxy_protocol; 
    listen 443 ssl http2 proxy_protocol; 
    ssl_certificate /etc/nginx/ssl/cloud.malte-kiefer.de/fullchain.cer; 
    ssl_certificate_key /etc/nginx/ssl/cloud.malte-kiefer.de/privkey.key; 


}
server {
    listen 80 proxy_protocol;
    listen [::]:80 proxy_protocol;

    server_name cloud.malte-kiefer.de;


    location / {
        return 301 https://cloud.malte-kiefer.de$request_uri;
    }

    return 404;
}

然后,我使用具有此配置的nextcloud的云容器:

upstream php-handler {
    server unix:/var/run/php/php7.3-fpm.sock;
}

server {
    listen 80 default_server;
    listen [::]:80 default_server;
    set $base /var/www/html;
    root /var/www/html;

    index index.php index.html index.htm index.nginx-debian.html;

    server_name cloud.malte-kiefer.de;


    fastcgi_hide_header X-Powered-By;

    client_max_body_size 512M;
    fastcgi_buffers 64 4K;

    # Enable gzip but do not remove ETag headers
    gzip on;
    gzip_vary on;
    gzip_comp_level 4;
    gzip_min_length 256;
    gzip_proxied expired no-cache no-store private no_last_modified no_etag auth;
    gzip_types application/atom+xml application/javascript application/json application/ld+json application/manifest+json application/rss+xml application/vnd.geo+json application/vnd.ms-fontobject application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/bmp image/svg+xml image/x-icon text/cache-manifest text/css text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy;


        location = /robots.txt {
            allow all;
        log_not_found off;
        access_log off;
    }

    location / {
        rewrite ^ /index.php;
    }

    location ~ ^\/(?:build|tests|config|lib|3rdparty|templates|data)\/ {
        deny all;
    }
    location ~ ^\/(?:\.|autotest|occ|issue|indie|db_|console) {
        deny all;
    }

    location ~ ^\/(?:index|remote|public|cron|core\/ajax\/update|status|ocs\/v[12]|updater\/.+|oc[ms]-provider\/.+)\.php(?:$|\/) {
        fastcgi_split_path_info ^(.+?\.php)(\/.*|)$;
        set $path_info $fastcgi_path_info;
        try_files $fastcgi_script_name =404;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $path_info;
        fastcgi_param HTTPS on;
        fastcgi_param modHeadersAvailable true;
        fastcgi_param front_controller_active true;
        fastcgi_pass php-handler;
        fastcgi_intercept_errors on;
        fastcgi_request_buffering off;
    }

    location ~ ^\/(?:updater|oc[ms]-provider)(?:$|\/) {
        try_files $uri/ =404;
        index index.php;
    }

    location = /.well-known/carddav {
      return 301 https://cloud.malte-kiefer.de/remote.php/dav;
    }
    location = /.well-known/caldav {
      return 301 https://cloud.malte-kiefer.de/remote.php/dav;
    }

    location ~ \.(?:css|js|woff2?|svg|gif|map)$ {
        try_files $uri /index.php$request_uri;
        add_header Cache-Control "public, max-age=15778463";
        add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload;" always;

        # Optional: Don't log access to assets
        access_log off;
    }

    location ~ \.(?:png|html|ttf|ico|jpg|jpeg|bcmap)$ {
        try_files $uri /index.php$request_uri;
        # Optional: Don't log access to other assets
        access_log off;
    }
}

[当我尝试打开URL时,我从nextcloud看到安装页面。当我输入信息并发送它时,它会从页面重新加载,然后在nextcloud日志中加载:

[未知:213个字节的POST内容长度超过了16个限制未知#0处的字节]

这是nextcloud容器中的nginx日志

2020/01/13 17:32:20 [错误] 416#416:* 8在stderr中发送的FastCGI:“ PHP消息:PHP警告:未知:213字节的POST内容长度读取时超出“ 0行上的未知”中的16个字节的限制来自上游的响应标头,客户端:89.204.135.199,服务器:cloud.malte-kiefer.de,请求:“ POST /index.php HTTP / 1.0”,上游:“ fastcgi:// unix:/var/run/php/php7.3-fpm.sock:”,主机:“ cloud.malte-kiefer.de”

我检查我的PHP ini文件:

root@cloud:~# grep -R "post_max_size" /etc/php/
/etc/php/7.3/fpm/php.ini:post_max_size = 16GB
/etc/php/7.3/cli/php.ini:post_max_size = 16GB
/etc/php/7.3/phpdbg/php.ini:post_max_size = 8M

root@cloud:~# grep -R "memory_limit" /etc/php/
/etc/php/7.3/fpm/pool.d/www.conf:;php_admin_value[memory_limit] = 32M
/etc/php/7.3/fpm/php.ini:memory_limit = 512M
/etc/php/7.3/cli/php.ini:memory_limit = 512M
/etc/php/7.3/phpdbg/php.ini:memory_limit = 128M

我找不到问题。也许你们可以帮助我。

php nginx lxc nextcloud
1个回答
0
投票

[好吧,这是php.ini文件中的missconfig。我完全删除了vom nextcloud容器的PHP,重新安装后即可使用。

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