Skip to content

16.0.3.0 "Internal Server Error" on *secured* https://...login submit: "Something is wrong with your openssl setup: error:02001002:system library:fopen:No such file or directory," #16378

@pgnd

Description

@pgnd

I run nginx/1.17.1 + PHP 7.4.0-dev on linux/64.

I've installed Nextcloud v16.0.3; 'successful install' to a MariaDB database, with no errors reported.

I am able to get to the Nextcloud secure login page -- so the nginx ssl cert is demonstrably correctly setup & functional -- but AFTER Nextcloud credential entry, I get an nginx-logged

	 http fastcgi header: "Status: 500 Internal Server Error"

with an SSL error reported in the Nextcloud logs,

	{"reqId":"Gh2WlSuqqPVEp7R7Ntk3","level":3,"time":"2019-07-17T05:23:57+00:00","remoteAddr":"10.50.50.1","user":"acct_user","app":"no app in context","method":"POST","url":"\/login?redirect_url=\/apps\/files\/","message":"Something is wrong with your openssl setup: error:02001002:system library:fopen:No such file or directory, error:2006D080:BIO routines:BIO_new_file:no such file, error:0E064002:configuration file routines:CONF_load:system lib, error:02001002:system library:fopen:No such file or directory, error:2006D080:BIO routines:BIO_new_file:no such file, error:0E064002:configuration file routines:CONF_load:system lib","userAgent":"Mozilla\/5.0 (X11; Linux x86_64; rv:67.0) Gecko\/20100101 Firefox\/67.0","version":"17.0.0.1"}

The nginx config is

	upstream phpfpm {
		server unix:/run/php-fpm.sock;
	}

	server {

		listen 10.50.50.80:11111 ssl http2;

		server_name nextcloud.pgnd.lan;
		root /srv/www/nextcloud.pgnd.lan/server;
		index  index.php index.html index.htm;

		rewrite_log on;
		access_log  /var/log/nginx/nextcloud.access.log main;
		error_log   /var/log/nginx/nextcloud.error.log debug;

		ssl_trusted_certificate "/srv/sec/myCA/chain.crt.pem";
		ssl_certificate         "/srv/sec/nextcloud.ec.crt.pem";
		ssl_certificate_key     "/srv/sec/nextcloud.ec.key.pem";

		add_header X-Content-Type-Options nosniff;
		add_header X-XSS-Protection "1; mode=block";
		add_header X-Robots-Tag none;
		add_header X-Download-Options noopen;
		add_header X-Permitted-Cross-Domain-Policies none;

		client_max_body_size 512M;
		fastcgi_buffers 64 4K;

		gzip off;

		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 / {
			rewrite ^ /index.php$uri;
		}

		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/.+|ocs-provider/.+|core/templates/40[34])\.php(?:$|/) {
		include fastcgi_params;
		fastcgi_split_path_info ^(.+\.php)(/.*)$;
		fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
		fastcgi_param PATH_INFO $fastcgi_path_info;
		#Avoid sending the security headers twice
		fastcgi_param modHeadersAvailable true;
		fastcgi_param front_controller_active true;
		fastcgi_intercept_errors on;
		fastcgi_request_buffering off;
		fastcgi_pass phpfpm;
	}

	location ~ ^/(?:updater|ocs-provider)(?:$|/) {
		try_files $uri/ =404;
		index index.php;
	}

	location ~* \.(?:css|js)$ {
		try_files $uri /index.php$uri$is_args$args;
		add_header Cache-Control "public, max-age=7200";
		add_header X-Content-Type-Options nosniff;
		add_header X-XSS-Protection "1; mode=block";
		add_header X-Robots-Tag none;
		add_header X-Download-Options noopen;
		add_header X-Permitted-Cross-Domain-Policies none;
		access_log off;
	}

	location ~* \.(?:svg|gif|png|html|ttf|woff|ico|jpg|jpeg)$ {
		try_files $uri /index.php$uri$is_args$args;
		access_log off;
	}
}

On nav to

	https://nextcloud.pgnd.lan:11111

from another box on the lan @ 10.50.50.1,

I see the expected Nextcloud login screen.

I enter user/pass credentials, and get a dialog

	"
	The server was unable to complete your request.

	If this happens again, please send the technical details below to the server administrator.

	More details can be found in the server log.
	Technical details

	    Remote Address: 10.50.50.1
	    Request ID: yVO1Jc9i5g1p4MSbKgCz
	"

the nginx log for this,

	tail -f /var/log/nginx/nextcloud.error.log debug

		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 idle handler
		2019/07/16 22:13:05 [debug] 51191#51191: *1 reusable connection: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 posix_memalign: 000055ECCCEE2D10:4096 @16
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 read handler
		2019/07/16 22:13:05 [debug] 51191#51191: *1 SSL_read: 72
		2019/07/16 22:13:05 [debug] 51191#51191: *1 SSL_read: 241
		2019/07/16 22:13:05 [debug] 51191#51191: *1 SSL_read: -1
		2019/07/16 22:13:05 [debug] 51191#51191: *1 SSL_get_error: 2
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 frame type:1 f:24 l:50 sid:65
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 HEADERS frame sid:65 depends on 13 excl:0 weight:42
		2019/07/16 22:13:05 [debug] 51191#51191: *1 posix_memalign: 000055ECCCE612E0:1024 @16
		2019/07/16 22:13:05 [debug] 51191#51191: *1 posix_memalign: 000055ECCCEF0E10:4096 @16
		2019/07/16 22:13:05 [debug] 51191#51191: *1 posix_memalign: 000055ECCCEF1E20:4096 @16
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed header: 3
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: ":method: POST"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed name: 5
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 encoded string, len:23
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http uri: "/login"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http args: "redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http exten: ""
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: ":path: /login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed header: 109
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: ":authority: nextcloud.pgnd.lan:11111"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed header: 7
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: ":scheme: https"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed header: 108
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: "user-agent: Mozilla/5.0 (X11; Linux x86_64; rv:67.0) Gecko/20100101 Firefox/67.0"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed header: 107
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: "accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed header: 106
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: "accept-language: en-US,en;q=0.5"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed header: 105
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: "accept-encoding: gzip, deflate, br"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed header: 103
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: "content-type: application/x-www-form-urlencoded"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed name: 102
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 encoded string, len:2
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 table add: "content-length: 232"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 table account: 49 free:490
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: "content-length: 232"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed header: 105
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: "referer: https://nextcloud.pgnd.lan:11111/login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed header: 63
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: "cookie: ocl2lu1mblc0=3ec443d3034647cd9f9645d0cba93502"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed header: 101
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: "cookie: oc_sessionPassphrase=aaaa...bbbb"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed header: 100
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: "cookie: __Host-nc_sameSiteCookielax=true"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed header: 99
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: "cookie: __Host-nc_sameSiteCookiestrict=true"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed header: 98
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: "upgrade-insecure-requests: 1"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 get indexed header: 96
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header: "te: trailers"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 request line: "POST /login?redirect_url=/apps/files/ HTTP/2.0"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 generic phase: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 rewrite phase: 1
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: "/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: ".well-known/carddav"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: "robots.txt"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: ~ "/.well-known/acme-challenge"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: ~ "^/(?:build|tests|config|lib|3rdparty|templates|data)/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: ~ "^/(?:\.|autotest|occ|issue|indie|db_|console)"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: ~ "^/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-provider/.+|core/templates/40[34])\.php(?:$|/)"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: ~ "^/(?:updater|ocs-provider)(?:$|/)"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: ~ "\.(?:css|js)$"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: ~ "\.(?:svg|gif|png|html|ttf|woff|ico|jpg|jpeg)$"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 using configuration "/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http cl:232 max:536870912
		2019/07/16 22:13:05 [debug] 51191#51191: *1 rewrite phase: 3
		2019/07/16 22:13:05 [debug] 51191#51191: *1 rewrite phase: 4
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script regex: "^"
		2019/07/16 22:13:05 [notice] 51191#51191: *1 "^" matches "/login", client: 10.50.50.1, server: nextcloud.pgnd.lan, request: "POST /login?redirect_url=/apps/files/ HTTP/2.0", host: "nextcloud.pgnd.lan:11111", referrer: "https://nextcloud.pgnd.lan:11111/login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "/index.php"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "/login"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script regex end
		2019/07/16 22:13:05 [notice] 51191#51191: *1 rewritten data: "/index.php/login", args: "redirect_url=/apps/files/", client: 10.50.50.1, server: nextcloud.pgnd.lan, request: "POST /login?redirect_url=/apps/files/ HTTP/2.0", host: "nextcloud.pgnd.lan:11111", referrer: "https://nextcloud.pgnd.lan:11111/login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 rewrite phase: 5
		2019/07/16 22:13:05 [debug] 51191#51191: *1 headers more rewrite handler, uri "/index.php/login"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 post rewrite phase: 6
		2019/07/16 22:13:05 [debug] 51191#51191: *1 uri changes: 11
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: "/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: ".well-known/carddav"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: "robots.txt"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: ~ "/.well-known/acme-challenge"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: ~ "^/(?:build|tests|config|lib|3rdparty|templates|data)/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: ~ "^/(?:\.|autotest|occ|issue|indie|db_|console)"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 test location: ~ "^/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-provider/.+|core/templates/40[34])\.php(?:$|/)"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 using configuration "^/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-provider/.+|core/templates/40[34])\.php(?:$|/)"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http cl:232 max:536870912
		2019/07/16 22:13:05 [debug] 51191#51191: *1 rewrite phase: 3
		2019/07/16 22:13:05 [debug] 51191#51191: *1 rewrite phase: 4
		2019/07/16 22:13:05 [debug] 51191#51191: *1 rewrite phase: 5
		2019/07/16 22:13:05 [debug] 51191#51191: *1 headers more rewrite handler, uri "/index.php/login"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 post rewrite phase: 6
		2019/07/16 22:13:05 [debug] 51191#51191: *1 generic phase: 7
		2019/07/16 22:13:05 [debug] 51191#51191: *1 generic phase: 8
		2019/07/16 22:13:05 [debug] 51191#51191: *1 generic phase: 9
		2019/07/16 22:13:05 [debug] 51191#51191: *1 access phase: 10
		2019/07/16 22:13:05 [debug] 51191#51191: *1 access phase: 11
		2019/07/16 22:13:05 [debug] 51191#51191: *1 access phase: 12
		2019/07/16 22:13:05 [debug] 51191#51191: *1 post access phase: 13
		2019/07/16 22:13:05 [debug] 51191#51191: *1 generic phase: 14
		2019/07/16 22:13:05 [debug] 51191#51191: *1 generic phase: 15
		2019/07/16 22:13:05 [debug] 51191#51191: *1 posix_memalign: 000055ECCCE1B5A0:4096 @16
		2019/07/16 22:13:05 [debug] 51191#51191: *1 malloc: 000055ECCCF522F0:65536
		2019/07/16 22:13:05 [debug] 51191#51191: *1 event timer add: 24: 10000:12379841
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http init upstream, client timer: 1
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "QUERY_STRING"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "QUERY_STRING: redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "REQUEST_METHOD"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "POST"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "REQUEST_METHOD: POST"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "CONTENT_TYPE"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "application/x-www-form-urlencoded"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "CONTENT_TYPE: application/x-www-form-urlencoded"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "CONTENT_LENGTH"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "232"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "CONTENT_LENGTH: 232"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "SCRIPT_NAME"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "/index.php"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "SCRIPT_NAME: /index.php"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "REQUEST_URI"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "/login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "REQUEST_URI: /login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "DOCUMENT_URI"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "/index.php/login"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "DOCUMENT_URI: /index.php/login"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "DOCUMENT_ROOT"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "/srv/www/nextcloud.pgnd.lan/server"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "DOCUMENT_ROOT: /srv/www/nextcloud.pgnd.lan/server"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "SERVER_PROTOCOL"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "HTTP/2.0"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "SERVER_PROTOCOL: HTTP/2.0"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "REQUEST_SCHEME"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "https"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "REQUEST_SCHEME: https"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "HTTPS"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "on"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "HTTPS: on"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "GATEWAY_INTERFACE"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "CGI/1.1"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "SERVER_SOFTWARE"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "nginx/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "1.17.1"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "SERVER_SOFTWARE: nginx/1.17.1"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "REMOTE_ADDR"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "10.50.50.1"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "REMOTE_ADDR: 10.50.50.1"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "REMOTE_PORT"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "2262"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "REMOTE_PORT: 2262"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "SERVER_ADDR"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "10.50.50.80"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "SERVER_ADDR: 10.50.50.80"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "SERVER_PORT"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "11111"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "SERVER_PORT: 11111"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "SERVER_NAME"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "nextcloud.pgnd.lan"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "SERVER_NAME: nextcloud.pgnd.lan"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "REDIRECT_STATUS"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "200"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "REDIRECT_STATUS: 200"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "SCRIPT_FILENAME"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "/srv/www/nextcloud.pgnd.lan/server"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "/index.php"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "SCRIPT_FILENAME: /srv/www/nextcloud.pgnd.lan/server/index.php"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "PATH_INFO"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script var: "/login"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "PATH_INFO: /login"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "modHeadersAvailable"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "true"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "modHeadersAvailable: true"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "front_controller_active"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http script copy: "true"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "front_controller_active: true"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "HTTP_HOST: nextcloud.pgnd.lan:11111"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "HTTP_USER_AGENT: Mozilla/5.0 (X11; Linux x86_64; rv:67.0) Gecko/20100101 Firefox/67.0"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "HTTP_ACCEPT: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "HTTP_ACCEPT_LANGUAGE: en-US,en;q=0.5"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "HTTP_ACCEPT_ENCODING: gzip, deflate, br"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "HTTP_CONTENT_TYPE: application/x-www-form-urlencoded"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "HTTP_CONTENT_LENGTH: 232"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "HTTP_REFERER: https://nextcloud.pgnd.lan:11111/login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "HTTP_UPGRADE_INSECURE_REQUESTS: 1"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "HTTP_TE: trailers"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi param: "HTTP_COOKIE: ocl2lu1mblc0=3ec443d3034647cd9f9645d0cba93502; oc_sessionPassphrase=aaaa...bbbb; __Host-nc_sameSiteCookielax=true; __Host-nc_sameSiteCookiestrict=true"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http cleanup add: 000055ECCCE1BEE0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 get rr peer, try: 1
		2019/07/16 22:13:05 [debug] 51191#51191: *1 stream socket 23
		2019/07/16 22:13:05 [debug] 51191#51191: *1 epoll add connection: fd:23 ev:80002005
		2019/07/16 22:13:05 [debug] 51191#51191: *1 connect to unix:/run/php-fpm.sock, fd:23 #13
		2019/07/16 22:13:05 [debug] 51191#51191: *1 connected
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http upstream connect: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 posix_memalign: 000055ECCCE69320:128 @16
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http upstream send request
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http upstream send request body
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi output filter
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi output header
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi output out l:0 f:0 000055ECCCE1B860, pos 000055ECCCE1B860, size: 1528 file: 0, size: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 chain writer buf fl:0 s:1528
		2019/07/16 22:13:05 [debug] 51191#51191: *1 chain writer in: 000055ECCCE1BF30
		2019/07/16 22:13:05 [debug] 51191#51191: *1 writev: 1528 of 1528
		2019/07/16 22:13:05 [debug] 51191#51191: *1 chain writer out: 0000000000000000
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http finalize request: -4, "/index.php/login?redirect_url=/apps/files/" a:1, c:2
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http request count:2 blk:0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 frame complete pos:000055ECCCF1231B end:000055ECCCF12419
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 frame type:8 f:0 l:4 sid:65
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 WINDOW_UPDATE frame sid:65 window:12451840
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 frame complete pos:000055ECCCF12328 end:000055ECCCF12419
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 frame type:0 f:1 l:232 sid:65
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 DATA frame
		2019/07/16 22:13:05 [debug] 51191#51191: *1 event timer del: 24: 12379841
		2019/07/16 22:13:05 [debug] 51191#51191: *1 post event 000055ECCCEE2E58
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 frame complete pos:000055ECCCF12419 end:000055ECCCF12419
		2019/07/16 22:13:05 [debug] 51191#51191: *1 event timer del: 24: 12516434
		2019/07/16 22:13:05 [debug] 51191#51191: *1 delete posted event 000055ECCCEE2E58
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http run request: "/index.php/login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http upstream read request handler
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http upstream send request
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http upstream send request body
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http body new buf t:1 f:0 000055ECCCF522F0, pos 000055ECCCF522F0, size: 232 file: 0, size: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi output filter
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi output in  l:1 f:0 000055ECCCF522F0, pos 000055ECCCF522F0, size: 232 file: 0, size: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi output out l:0 f:0 000055ECCCE1BFE0, pos 000055ECCCE1BFE0, size: 8 file: 0, size: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi output out l:0 f:0 0000000000000000, pos 000055ECCCF522F0, size: 232 file: 0, size: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 fastcgi output out l:1 f:0 000055ECCCE1C0B0, pos 000055ECCCE1C0B0, size: 8 file: 0, size: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 chain writer buf fl:0 s:8
		2019/07/16 22:13:05 [debug] 51191#51191: *1 chain writer buf fl:1 s:232
		2019/07/16 22:13:05 [debug] 51191#51191: *1 chain writer buf fl:0 s:8
		2019/07/16 22:13:05 [debug] 51191#51191: *1 chain writer in: 000055ECCCE1C0C0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 writev: 248 of 248
		2019/07/16 22:13:05 [debug] 51191#51191: *1 chain writer out: 0000000000000000
		2019/07/16 22:13:05 [debug] 51191#51191: *1 event timer add: 23: 60000:12429841
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http upstream request: "/index.php/login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http upstream dummy handler
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http upstream request: "/index.php/login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http upstream dummy handler
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http upstream request: "/index.php/login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http upstream process header
		2019/07/16 22:13:05 [debug] 51191#51191: *1 malloc: 000055ECCCE1C5B0:4096
		2019/07/16 22:13:05 [debug] 51191#51191: *1 recv: eof:1, avail:1
		2019/07/16 22:13:05 [debug] 51191#51191: *1 recv: fd:23 4096 of 4096
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record byte: 01
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record byte: 06
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record byte: 00
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record byte: 01
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record byte: 11
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record byte: C3
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record byte: 05
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record byte: 00
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record length: 4547
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi parser: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi header: "Status: 500 Internal Server Error"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi parser: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi header: "X-Powered-By: PHP/7.4.0-dev"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi parser: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi header: "Expires: Thu, 19 Nov 1981 08:52:00 GMT"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi parser: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi header: "Cache-Control: no-store, no-cache, must-revalidate"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi parser: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi header: "Pragma: no-cache"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi parser: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi header: "Content-Security-Policy: default-src 'self'; script-src 'self' 'nonce-cDBnWGZiVzh0WGNzZUUvUmJsOEs4OG4xeTFpREEvd2ZHbXBsR1J1MHpjST06elNCWU5kMzJuaVpuTFNPbE55WjcyS2FtdlczMFZKNTJiRDRNZmlMZ2d1az0='; style-src 'self' 'unsafe-inline'; frame-src *; img-src * data: blob:; font-src 'self' data:; media-src *; connect-src *; object-src 'none'; base-uri 'self';"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi parser: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi header: "X-Frame-Options: SAMEORIGIN"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi parser: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 posix_memalign: 000055ECCCE1D5C0:4096 @16
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi header: "Set-Cookie: ocl2lu1mblc0=f4de9bc5ca3b2543b1490f3815085c99; path=/; secure; HttpOnly"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi parser: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi header: "Content-type: text/html; charset=UTF-8"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi parser: 1
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi header done
		2019/07/16 22:13:05 [debug] 51191#51191: *1 headers more header filter, uri "/index.php/login"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 header filter
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 push resources
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 output header: ":status: 500"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 output header: "date: Wed, 17 Jul 2019 05:13:05 GMT"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 output header: "content-type: text/html; charset=UTF-8"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 output header: "x-powered-by: PHP/7.4.0-dev"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 output header: "expires: Thu, 19 Nov 1981 08:52:00 GMT"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 output header: "cache-control: no-store, no-cache, must-revalidate"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 output header: "pragma: no-cache"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 output header: "content-security-policy: default-src 'self'; script-src 'self' 'nonce-cDBnWGZiVzh0WGNzZUUvUmJsOEs4OG4xeTFpREEvd2ZHbXBsR1J1MHpjST06elNCWU5kMzJuaVpuTFNPbE55WjcyS2FtdlczMFZKNTJiRDRNZmlMZ2d1az0='; style-src 'self' 'unsafe-inline'; frame-src *; img-src * data: blob:; font-src 'self' data:; media-src *; connect-src *; object-src 'none'; base-uri 'self';"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 output header: "x-frame-options: SAMEORIGIN"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 output header: "set-cookie: ocl2lu1mblc0=f4de9bc5ca3b2543b1490f3815085c99; path=/; secure; HttpOnly"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 output header: "nextcloud: App"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2:65 create HEADERS frame 000055ECCCE1DC18: len:522 fin:0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http cleanup add: 000055ECCCE1DD00
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 frame out: 000055ECCCE1DC18 sid:65 bl:1 len:522
		2019/07/16 22:13:05 [debug] 51191#51191: *1 malloc: 000055ECCCF62300:16384
		2019/07/16 22:13:05 [debug] 51191#51191: *1 SSL buf copy: 9
		2019/07/16 22:13:05 [debug] 51191#51191: *1 SSL buf copy: 522
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2:65 HEADERS frame 000055ECCCE1DC18 was sent
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 frame sent: 000055ECCCE1DC18 sid:65 bl:1 len:522
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http cacheable: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http upstream process upstream
		2019/07/16 22:13:05 [debug] 51191#51191: *1 pipe read upstream: 1
		2019/07/16 22:13:05 [debug] 51191#51191: *1 pipe preread: 3408
		2019/07/16 22:13:05 [debug] 51191#51191: *1 input buf #0 000055ECCCE1C860
		2019/07/16 22:13:05 [debug] 51191#51191: *1 input buf 000055ECCCE1C860 3408
		2019/07/16 22:13:05 [debug] 51191#51191: *1 malloc: 000055ECCCF66310:4096
		2019/07/16 22:13:05 [debug] 51191#51191: *1 readv: eof:1, avail:1
		2019/07/16 22:13:05 [debug] 51191#51191: *1 readv: 1, last:4096
		2019/07/16 22:13:05 [debug] 51191#51191: *1 pipe recv chain: 480
		2019/07/16 22:13:05 [debug] 51191#51191: *1 readv: eof:1, avail:0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 readv: 1, last:3616
		2019/07/16 22:13:05 [debug] 51191#51191: *1 pipe recv chain: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 pipe buf in   s:1 t:1 f:0 000055ECCCE1C5B0, pos 000055ECCCE1C860, size: 3408 file: 0, size: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 pipe buf free s:0 t:1 f:0 000055ECCCF66310, pos 000055ECCCF66310, size: 480 file: 0, size: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 pipe length: -1
		2019/07/16 22:13:05 [debug] 51191#51191: *1 input buf #1 000055ECCCF66310
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record byte: 01
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record byte: 03
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record byte: 00
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record byte: 01
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record byte: 00
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record byte: 08
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record byte: 00
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record byte: 00
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi record length: 8
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http fastcgi sent end request
		2019/07/16 22:13:05 [debug] 51191#51191: *1 input buf 000055ECCCF66310 459
		2019/07/16 22:13:05 [debug] 51191#51191: *1 pipe write downstream: 1
		2019/07/16 22:13:05 [debug] 51191#51191: *1 pipe write downstream flush in
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http output filter "/index.php/login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http copy filter: "/index.php/login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 image filter
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http postpone filter "/index.php/login?redirect_url=/apps/files/" 000055ECCCE1DFC0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 write new buf t:1 f:0 000055ECCCE1C5B0, pos 000055ECCCE1C860, size: 3408 file: 0, size: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 write new buf t:1 f:0 000055ECCCF66310, pos 000055ECCCF66310, size: 459 file: 0, size: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http write filter: l:0 f:0 s:3867
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http write filter limit 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2:65 windows: conn:12573085 stream:12582912
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2:65 create DATA frame 000055ECCCE1DC18: len:3867 flags:0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 frame out: 000055ECCCE1DC18 sid:65 bl:0 len:3867
		2019/07/16 22:13:05 [debug] 51191#51191: *1 SSL buf copy: 9
		2019/07/16 22:13:05 [debug] 51191#51191: *1 SSL buf copy: 3408
		2019/07/16 22:13:05 [debug] 51191#51191: *1 SSL buf copy: 459
		2019/07/16 22:13:05 [debug] 51191#51191: *1 SSL to write: 4407
		2019/07/16 22:13:05 [debug] 51191#51191: *1 SSL_write: 4407
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2:65 DATA frame 000055ECCCE1DC18 was sent
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 frame sent: 000055ECCCE1DC18 sid:65 bl:0 len:3867
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http write filter 0000000000000000
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http copy filter: 0 "/index.php/login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 pipe write downstream done
		2019/07/16 22:13:05 [debug] 51191#51191: *1 event timer: 23, old: 12429841, new: 12430037
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http upstream exit: 0000000000000000
		2019/07/16 22:13:05 [debug] 51191#51191: *1 finalize http upstream request: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 finalize http fastcgi request
		2019/07/16 22:13:05 [debug] 51191#51191: *1 free rr peer 1 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 close http upstream connection: 23
		2019/07/16 22:13:05 [debug] 51191#51191: *1 free: 000055ECCCE69320, unused: 48
		2019/07/16 22:13:05 [debug] 51191#51191: *1 event timer del: 23: 12429841
		2019/07/16 22:13:05 [debug] 51191#51191: *1 reusable connection: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http upstream temp fd: -1
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http output filter "/index.php/login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http copy filter: "/index.php/login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 image filter
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http postpone filter "/index.php/login?redirect_url=/apps/files/" 00007FFE64E08FA0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 write new buf t:0 f:0 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http write filter: l:1 f:0 s:0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http write filter limit 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2:65 create DATA frame 000055ECCCE1DC18: len:0 flags:1
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 frame out: 000055ECCCE1DC18 sid:65 bl:0 len:0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 SSL buf copy: 9
		2019/07/16 22:13:05 [debug] 51191#51191: *1 SSL to write: 9
		2019/07/16 22:13:05 [debug] 51191#51191: *1 SSL_write: 9
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2:65 DATA frame 000055ECCCE1DC18 was sent
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 frame sent: 000055ECCCE1DC18 sid:65 bl:0 len:0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http write filter 0000000000000000
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http copy filter: 0 "/index.php/login?redirect_url=/apps/files/"
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http finalize request: 0, "/index.php/login?redirect_url=/apps/files/" a:1, c:1
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http request count:1 blk:0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 close stream 65, queued 0, processing 1, pushing 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http close request
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http log handler
		2019/07/16 22:13:05 [debug] 51191#51191: *1 geoip2 http log handler
		2019/07/16 22:13:05 [debug] 51191#51191: *1 free: 000055ECCCF66310
		2019/07/16 22:13:05 [debug] 51191#51191: *1 free: 000055ECCCE1C5B0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 free: 000055ECCCF522F0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 free: 000055ECCCEF0E10, unused: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 free: 000055ECCCEF1E20, unused: 0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 free: 000055ECCCE1B5A0, unused: 2
		2019/07/16 22:13:05 [debug] 51191#51191: *1 free: 000055ECCCE1D5C0, unused: 1061
		2019/07/16 22:13:05 [debug] 51191#51191: *1 free: 000055ECCCE612E0, unused: 153
		2019/07/16 22:13:05 [debug] 51191#51191: *1 post event 000055ECCCF064A0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 delete posted event 000055ECCCF064A0
		2019/07/16 22:13:05 [debug] 51191#51191: *1 http2 handle connection handler
		2019/07/16 22:13:05 [debug] 51191#51191: *1 free: 000055ECCCEE2D10, unused: 3472
		2019/07/16 22:13:05 [debug] 51191#51191: *1 free: 000055ECCCF62300
		2019/07/16 22:13:05 [debug] 51191#51191: *1 reusable connection: 1
		2019/07/16 22:13:05 [debug] 51191#51191: *1 event timer add: 24: 180000:12111117

and the NextCloud log

	tail -f /data/db/nextcloud/nextcloud.log

		{"reqId":"Gh2WlSuqqPVEp7R7Ntk3","level":3,"time":"2019-07-17T05:23:57+00:00","remoteAddr":"10.50.50.1","user":"--","app":"PHP","method":"POST","url":"\/login?redirect_url=\/apps\/files\/","message":"Function ReflectionType::__toString() is deprecated at \/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/AppFramework\/Utility\/ControllerMethodReflector.php#80","userAgent":"Mozilla\/5.0 (X11; Linux x86_64; rv:67.0) Gecko\/20100101 Firefox\/67.0","version":"17.0.0.1"}
		{"reqId":"Gh2WlSuqqPVEp7R7Ntk3","level":3,"time":"2019-07-17T05:23:57+00:00","remoteAddr":"10.50.50.1","user":"--","app":"PHP","method":"POST","url":"\/login?redirect_url=\/apps\/files\/","message":"Function ReflectionType::__toString() is deprecated at \/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/AppFramework\/Utility\/ControllerMethodReflector.php#80","userAgent":"Mozilla\/5.0 (X11; Linux x86_64; rv:67.0) Gecko\/20100101 Firefox\/67.0","version":"17.0.0.1"}
		{"reqId":"Gh2WlSuqqPVEp7R7Ntk3","level":3,"time":"2019-07-17T05:23:57+00:00","remoteAddr":"10.50.50.1","user":"--","app":"PHP","method":"POST","url":"\/login?redirect_url=\/apps\/files\/","message":"Function ReflectionType::__toString() is deprecated at \/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/AppFramework\/Utility\/ControllerMethodReflector.php#80","userAgent":"Mozilla\/5.0 (X11; Linux x86_64; rv:67.0) Gecko\/20100101 Firefox\/67.0","version":"17.0.0.1"}
		{"reqId":"Gh2WlSuqqPVEp7R7Ntk3","level":3,"time":"2019-07-17T05:23:57+00:00","remoteAddr":"10.50.50.1","user":"--","app":"PHP","method":"POST","url":"\/login?redirect_url=\/apps\/files\/","message":"Function ReflectionType::__toString() is deprecated at \/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/AppFramework\/Utility\/ControllerMethodReflector.php#80","userAgent":"Mozilla\/5.0 (X11; Linux x86_64; rv:67.0) Gecko\/20100101 Firefox\/67.0","version":"17.0.0.1"}
		{"reqId":"Gh2WlSuqqPVEp7R7Ntk3","level":3,"time":"2019-07-17T05:23:57+00:00","remoteAddr":"10.50.50.1","user":"--","app":"PHP","method":"POST","url":"\/login?redirect_url=\/apps\/files\/","message":"Function ReflectionType::__toString() is deprecated at \/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/AppFramework\/Utility\/ControllerMethodReflector.php#80","userAgent":"Mozilla\/5.0 (X11; Linux x86_64; rv:67.0) Gecko\/20100101 Firefox\/67.0","version":"17.0.0.1"}
		{"reqId":"Gh2WlSuqqPVEp7R7Ntk3","level":3,"time":"2019-07-17T05:23:57+00:00","remoteAddr":"10.50.50.1","user":"acct_user","app":"no app in context","method":"POST","url":"\/login?redirect_url=\/apps\/files\/","message":"Something is wrong with your openssl setup: error:02001002:system library:fopen:No such file or directory, error:2006D080:BIO routines:BIO_new_file:no such file, error:0E064002:configuration file routines:CONF_load:system lib, error:02001002:system library:fopen:No such file or directory, error:2006D080:BIO routines:BIO_new_file:no such file, error:0E064002:configuration file routines:CONF_load:system lib","userAgent":"Mozilla\/5.0 (X11; Linux x86_64; rv:67.0) Gecko\/20100101 Firefox\/67.0","version":"17.0.0.1"}
		{"reqId":"Gh2WlSuqqPVEp7R7Ntk3","level":3,"time":"2019-07-17T05:23:57+00:00","remoteAddr":"10.50.50.1","user":"acct_user","app":"PHP","method":"POST","url":"\/login?redirect_url=\/apps\/files\/","message":"openssl_pkey_export(): cannot get key from parameter 1 at \/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Token\/PublicKeyTokenProvider.php#311","userAgent":"Mozilla\/5.0 (X11; Linux x86_64; rv:67.0) Gecko\/20100101 Firefox\/67.0","version":"17.0.0.1"}
		{"reqId":"Gh2WlSuqqPVEp7R7Ntk3","level":3,"time":"2019-07-17T05:23:57+00:00","remoteAddr":"10.50.50.1","user":"acct_user","app":"index","method":"POST","url":"\/login?redirect_url=\/apps\/files\/","message":{"Exception":"TypeError","Message":"openssl_pkey_get_details() expects parameter 1 to be resource, bool given","Code":0,"Trace":[{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Token\/PublicKeyTokenProvider.php","line":314,"function":"openssl_pkey_get_details","args":[false]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Token\/PublicKeyTokenProvider.php","line":71,"function":"newToken","class":"OC\\Authentication\\Token\\PublicKeyTokenProvider","type":"->","args":["*** sensitive parameter replaced ***","*** sensitive parameter replaced ***","*** sensitive parameter replaced ***","*** sensitive parameter replaced ***","*** sensitive parameter replaced ***","*** sensitive parameter replaced ***","*** sensitive parameter replaced ***"]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Token\/Manager.php","line":64,"function":"generateToken","class":"OC\\Authentication\\Token\\PublicKeyTokenProvider","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/User\/Session.php","line":646,"function":"generateToken","class":"OC\\Authentication\\Token\\Manager","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Login\/CreateSessionTokenCommand.php","line":54,"function":"createSessionToken","class":"OC\\User\\Session","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Login\/ALoginCommand.php","line":39,"function":"process","class":"OC\\Authentication\\Login\\CreateSessionTokenCommand","type":"->","args":[{"__class__":"OC\\Authentication\\Login\\LoginData"}]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Login\/CompleteLoginCommand.php","line":47,"function":"processNextOrFinishSuccessfully","class":"OC\\Authentication\\Login\\ALoginCommand","type":"->","args":[{"__class__":"OC\\Authentication\\Login\\LoginData"}]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Login\/ALoginCommand.php","line":39,"function":"process","class":"OC\\Authentication\\Login\\CompleteLoginCommand","type":"->","args":[{"__class__":"OC\\Authentication\\Login\\LoginData"}]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Login\/LoggedInCheckCommand.php","line":50,"function":"processNextOrFinishSuccessfully","class":"OC\\Authentication\\Login\\ALoginCommand","type":"->","args":[{"__class__":"OC\\Authentication\\Login\\LoginData"}]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Login\/ALoginCommand.php","line":39,"function":"process","class":"OC\\Authentication\\Login\\LoggedInCheckCommand","type":"->","args":[{"__class__":"OC\\Authentication\\Login\\LoginData"}]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Login\/EmailLoginCommand.php","line":58,"function":"processNextOrFinishSuccessfully","class":"OC\\Authentication\\Login\\ALoginCommand","type":"->","args":[{"__class__":"OC\\Authentication\\Login\\LoginData"}]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Login\/ALoginCommand.php","line":39,"function":"process","class":"OC\\Authentication\\Login\\EmailLoginCommand","type":"->","args":[{"__class__":"OC\\Authentication\\Login\\LoginData"}]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Login\/UidLoginCommand.php","line":54,"function":"processNextOrFinishSuccessfully","class":"OC\\Authentication\\Login\\ALoginCommand","type":"->","args":[{"__class__":"OC\\Authentication\\Login\\LoginData"}]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Login\/ALoginCommand.php","line":39,"function":"process","class":"OC\\Authentication\\Login\\UidLoginCommand","type":"->","args":[{"__class__":"OC\\Authentication\\Login\\LoginData"}]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Login\/UserDisabledCheckCommand.php","line":57,"function":"processNextOrFinishSuccessfully","class":"OC\\Authentication\\Login\\ALoginCommand","type":"->","args":[{"__class__":"OC\\Authentication\\Login\\LoginData"}]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Login\/ALoginCommand.php","line":39,"function":"process","class":"OC\\Authentication\\Login\\UserDisabledCheckCommand","type":"->","args":[{"__class__":"OC\\Authentication\\Login\\LoginData"}]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Login\/PreLoginHookCommand.php","line":52,"function":"processNextOrFinishSuccessfully","class":"OC\\Authentication\\Login\\ALoginCommand","type":"->","args":[{"__class__":"OC\\Authentication\\Login\\LoginData"}]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Login\/Chain.php","line":108,"function":"process","class":"OC\\Authentication\\Login\\PreLoginHookCommand","type":"->","args":[{"__class__":"OC\\Authentication\\Login\\LoginData"}]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/core\/Controller\/LoginController.php","line":298,"function":"process","class":"OC\\Authentication\\Login\\Chain","type":"->","args":[{"__class__":"OC\\Authentication\\Login\\LoginData"}]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/AppFramework\/Http\/Dispatcher.php","line":166,"function":"tryLogin","class":"OC\\Core\\Controller\\LoginController","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/AppFramework\/Http\/Dispatcher.php","line":99,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OC\\Core\\Controller\\LoginController"},"tryLogin"]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/AppFramework\/App.php","line":126,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OC\\Core\\Controller\\LoginController"},"tryLogin"]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/AppFramework\/Routing\/RouteActionHandler.php","line":47,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OC\\Core\\Controller\\LoginController","tryLogin",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},{"_route":"core.login.tryLogin"}]},{"function":"__invoke","class":"OC\\AppFramework\\Routing\\RouteActionHandler","type":"->","args":[{"_route":"core.login.tryLogin"}]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Route\/Router.php","line":297,"function":"call_user_func","args":[{"__class__":"OC\\AppFramework\\Routing\\RouteActionHandler"},{"_route":"core.login.tryLogin"}]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/base.php","line":975,"function":"match","class":"OC\\Route\\Router","type":"->","args":["\/login"]},{"file":"\/srv\/www\/nextcloud.pgnd.lan\/server\/index.php","line":42,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"\/srv\/www\/nextcloud.pgnd.lan\/server\/lib\/private\/Authentication\/Token\/PublicKeyTokenProvider.php","Line":314,"CustomMessage":"--"},"userAgent":"Mozilla\/5.0 (X11; Linux x86_64; rv:67.0) Gecko\/20100101 Firefox\/67.0","version":"17.0.0.1"}

Metadata

Metadata

Assignees

No one assigned

    Labels

    0. Needs triagePending check for reproducibility or if it fits our roadmapbugneeds info

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions