Redirection loop in nextcloud 12

Nextcloud version: 12
Operating system and version: Debian 9
Apache or nginx version: Nginx 1.10
PHP version: 7.0
Is this the first time you’ve seen this error?: yes

Can you reliably replicate it? (If so, please outline steps): no

The issue you are facing: redirection loop in the Browser. Every time i try to login the browser gives me a redirection error. I had it running with the owncloud debian packages installed. Then I upgraded to nextcloud 12. Everything was working fine. Then I deleted the owncloud packages, which must have deleted the nextcloud files that have the same name in the directory. So I unzipped the nextcloud folder where it belonged and put in the former data directory and its config. Should work fine but doesen’t. Maybe the update to PHP7 broke it I can’t really tell no more. But the logs don’t tell about PHP errors.

Nginx nextcloud.conf:

upstream php-handler {
#server 127.0.0.1:9000;
server unix:/var/run/php/php7.0-fpm.sock;
}
server {
listen 80;
server_name bla;
# enforce https
return 301 https://$server_name$request_uri;
}

server {
listen 443 ssl http2;
server_name bla;

ssl_certificate /etc/letsencrypt/live/mail.test.de/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/mail.test.de/privkey.pem; # managed by Certbot
ssl_dhparam /etc/ssl/localcerts/dh-4096.pem;

ssl_prefer_server_ciphers on;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ecdh_curve secp384r1;
ssl_ciphers ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA:!aNULL:!eNULL:!EXPORT:!LOW:!MEDIUM:!DES:!3DES:!RC4:!SEED:!CAMELLIA:!MD5:!PSK:!DSS:!ADH:!AECDH:!MD5;

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;

# Path to the root of your installation
root /var/www/owncloud/;

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

# The following 2 rules are only needed for the user_webfinger app.
# Uncomment it if you're planning to use this app.
#rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
#rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json
# last;

location = /.well-known/carddav {
  return 301 $scheme://$host/remote.php/dav;
}
location = /.well-known/caldav {
  return 301 $scheme://$host/remote.php/dav;
}

# set max upload size
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;

# Uncomment if your server is build with the ngx_pagespeed module
# This module is currently not supported.
#pagespeed 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/.+)\.php(?:$|/) {
    fastcgi_split_path_info ^(.+\.php)(/.*)$;
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param PATH_INFO $fastcgi_path_info;
    fastcgi_param HTTPS on;
    #Avoid sending the security headers twice
    fastcgi_param modHeadersAvailable true;
    fastcgi_param front_controller_active true;
    fastcgi_pass php-handler;
    fastcgi_intercept_errors on;
    fastcgi_request_buffering off;
}

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

# Adding the cache control header for js and css files
# Make sure it is BELOW the PHP block
location ~ \.(?:css|js|woff|svg|gif)$ {
    try_files $uri /index.php$uri$is_args$args;
    add_header Cache-Control "public, max-age=15778463";
    # Add headers to serve security related headers (It is intended to
    # have those duplicated to the ones above)
    # Before enabling Strict-Transport-Security headers please read into
    # this topic first.
    # add_header Strict-Transport-Security "max-age=15768000;
    #  includeSubDomains; preload;";
    #
    # WARNING: Only add the preload option once you read about
    # the consequences in https://hstspreload.org/. This option
    # will add the domain to a hardcoded list that is shipped
    # in all major browsers and getting removed from this list
    # could take several months.
    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;
    # Optional: Don't log access to assets
    access_log off;
}

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

Nextcloud configuration:

{
“system”: {
“instanceid”: “oc6vms6id1ch”,
“passwordsalt”: “REMOVED SENSITIVE VALUE”,
“secret”: “REMOVED SENSITIVE VALUE”,
“trusted_domains”: [
“bla”
],
“datadirectory”: “/var/www/owncloud/data”,
“overwrite.cli.url”: “”,
“dbtype”: “mysql”,
“version”: “12.0.0.29”,
“dbname”: “owncloud”,
“dbhost”: “localhost”,
“dbtableprefix”: “oc_”,
“dbuser”: “REMOVED SENSITIVE VALUE”,
“dbpassword”: “REMOVED SENSITIVE VALUE”,
“logtimezone”: “Europe/Berlin”,
“log_type”: “owncloud”,
“log_authfailip”: true,
“installed”: true,
“mail_smtpmode”: “php”,
“user_backends”: [
{
“class”: “OC_User_IMAP”,
“arguments”: [
“{bla:143/imap/tls}”
]
}
],
“mail_from_address”: “cloud”,
“mail_domain”: “bla”,
“activity_expire_days”: 60,
“maintenance”: false,
“theme”: “”,
“appstore.experimental.enabled”: true,
“loglevel”: 1,
“updatechecker”: false,
“singleuser”: false,
“updater.release.channel”: “stable”
},
“apps”: {
“activity”: {
“enabled”: “yes”,
“installed_version”: “2.5.2”,
“types”: “filesystem”
},
“activitydefaults”: {
“enabled”: “no”,
“installed_version”: “0.1.0”,
“notify_email_comments”: “”,
“notify_email_file_changed”: “”,
“notify_email_file_created”: “”,
“notify_email_file_deleted”: “”,
“notify_email_file_restored”: “”,
“notify_email_files_favorites”: “”,
“notify_email_public_links”: “”,
“notify_email_remote_share”: “”,
“notify_email_shared”: “”,
“notify_email_systemtags”: “”,
“notify_setting_batchtime”: “3600”,
“notify_setting_self”: “1”,
“notify_setting_selfemail”: “”,
“notify_stream_comments”: “1”,
“notify_stream_file_changed”: “1”,
“notify_stream_file_created”: “1”,
“notify_stream_file_deleted”: “1”,
“notify_stream_file_restored”: “1”,
“notify_stream_files_favorites”: “”,
“notify_stream_public_links”: “1”,
“notify_stream_remote_share”: “1”,
“notify_stream_shared”: “1”,
“notify_stream_systemtags”: “1”,
“types”: “”
},
“admin_notifications”: {
“enabled”: “no”,
“installed_version”: “1.0.0”,
“types”: “logging”
},
“announcementcenter”: {
“enabled”: “no”,
“installed_version”: “1.1.2”,
“ocsid”: “173921”,
“signed”: “true”,
“types”: “”
},
“audios”: {
“enabled”: “no”,
“installed_version”: “1.2.5”,
“ocsid”: “170562”,
“types”: “”
},
“backgroundjob”: {
“lastjob”: “20”
},
“bruteforcesettings”: {
“enabled”: “no”,
“installed_version”: “1.0.2”,
“types”: “”
},
“calendar”: {
“enabled”: “no”,
“installed_version”: “1.5.3”,
“ocsid”: “168707”,
“signed”: “true”,
“types”: “”
},
“circles”: {
“enabled”: “no”,
“installed_version”: “0.10.0”,
“types”: “”
},
“comments”: {
“enabled”: “yes”,
“installed_version”: “1.2.0”,
“types”: “logging”
},
“configreport”: {
“enabled”: “no”,
“installed_version”: “0.1.1”,
“types”: “filesystem”
},
“contacts”: {
“enabled”: “no”,
“installed_version”: “1.5.3”,
“ocsid”: “168708”,
“signed”: “true”,
“types”: “”
},
“core”: {
“OC_Channel”: “stable”,
“backgroundjobs_mode”: “cron”,
“default_encryption_module”: “OC_DEFAULT_MODULE”,
“encryption_enabled”: “yes”,
“installed.bundles”: “["CoreBundle"]”,
“installedat”: “1446458334.4626”,
“lastcron”: “1501093802”,
“lastupdateResult”: “”,
“lastupdatedat”: “1498163404”,
“moveavatarsdone”: “yes”,
“oc.integritycheck.checker”: “”,
“previewsCleanedUp”: “1”,
“public_caldav”: “calendar/share.php”,
“public_calendar”: “calendar/share.php”,
“public_documents”: “documents/public.php”,
“public_files”: “files_sharing/public.php”,
“public_webdav”: “dav/appinfo/v1/publicwebdav.php”,
“remote_caldav”: “dav/appinfo/v1/caldav.php”,
“remote_calendar”: “dav/appinfo/v1/caldav.php”,
“remote_carddav”: “dav/appinfo/v1/carddav.php”,
“remote_contacts”: “dav/appinfo/v1/carddav.php”,
“remote_dav”: “dav/appinfo/v2/remote.php”,
“remote_files”: “dav/appinfo/v1/webdav.php”,
“remote_webdav”: “dav/appinfo/v1/webdav.php”,
“repairlegacystoragesdone”: “yes”,
“scss.variables”: “db88bb40b329d8237249826c4121ad3a”,
“shareapi_allow_mail_notification”: “yes”,
“shareapi_allow_public_notification”: “yes”,
“shareapi_exclude_groups”: “no”,
“shareapi_exclude_groups_list”: “[""]”,
“umgmt_send_email”: “false”,
“umgmt_show_backend”: “false”,
“umgmt_show_email”: “true”,
“umgmt_show_last_login”: “true”,
“umgmt_show_storage_location”: “false”,
“updater.secret.created”: “1497627399”,
“vendor”: “nextcloud”
},
“dav”: {
“buildCalendarSearchIndex”: “yes”,
“enabled”: “yes”,
“installed_version”: “1.3.0”,
“types”: “filesystem”
},
“documents”: {
“converter”: “local”,
“enabled”: “no”,
“installed_version”: “0”,
“ocsid”: “168711”,
“types”: “”
},
“encryption”: {
“enabled”: “yes”,
“installed_version”: “1.6.0”,
“masterKeyId”: “master_0ba79283”,
“publicShareKeyId”: “pubShare_0ba79283”,
“recoveryKeyId”: “recoveryKey_0ba79283”,
“types”: “filesystem”
},
“federatedfilesharing”: {
“enabled”: “yes”,
“installed_version”: “1.2.0”,
“types”: “”
},
“federation”: {
“enabled”: “yes”,
“installed_version”: “1.2.0”,
“types”: “authentication”
},
“files”: {
“cronjob_scan_files”: “500”,
“default_quota”: “5 GB”,
“enabled”: “yes”,
“installed_version”: “1.7.2”,
“types”: “filesystem”
},
“files_antivirus”: {
“av_chunk_size”: “1024”,
“av_cmd_options”: “”,
“av_host”: “”,
“av_infected_action”: “delete”,
“av_mode”: “executable”,
“av_path”: “/usr/bin/clamscan”,
“av_port”: “0”,
“av_socket”: “/var/run/clamav/clamd.ctl”,
“enabled”: “no”,
“installed_version”: “0.8.0.1”,
“ocsid”: “157439”,
“types”: “filesystem”
},
“files_external”: {
“enabled”: “yes”,
“google::29054423815-a7k25fquk59iaqlg3n1446565971cId”: “1”,
“google::29054423815-rpdlah7kqelb3vjvrr1446566932cId”: “1991”,
“installed_version”: “1.3.0”,
“ocsid”: “166048”,
“types”: “filesystem”,
“user_mounting_backends”: “owncloud,amazons3,dropbox,googledrive”
},
“files_locking”: {
“enabled”: “no”,
“installed_version”: “”,
“types”: “filesystem”
},
“files_pdfviewer”: {
“enabled”: “yes”,
“installed_version”: “1.1.1”,
“ocsid”: “166049”,
“types”: “”
},
“files_sharing”: {
“enabled”: “yes”,
“installed_version”: “1.4.0”,
“types”: “filesystem”
},
“files_texteditor”: {
“enabled”: “yes”,
“installed_version”: “2.4.1”,
“ocsid”: “166051”,
“types”: “”
},
“files_trashbin”: {
“enabled”: “yes”,
“installed_version”: “1.2.0”,
“types”: “filesystem”
},
“files_versions”: {
“enabled”: “yes”,
“installed_version”: “1.5.0”,
“types”: “filesystem”
},
“files_videojs-sublime”: {
“enabled”: “no”,
“installed_version”: “0.9.8”,
“ocsid”: “173993”,
“types”: “”
},
“files_videoplayer”: {
“enabled”: “no”,
“installed_version”: “0.9.8”,
“types”: “”
},
“files_videoviewer”: {
“enabled”: “no”,
“installed_version”: “0.1.3”,
“ocsid”: “166054”,
“types”: “”
},
“firstrunwizard”: {
“enabled”: “yes”,
“installed_version”: “2.1”,
“types”: “logging”
},
“gallery”: {
“enabled”: “yes”,
“installed_version”: “17.0.0”,
“types”: “”
},
“html5_videoplayer”: {
“enabled”: “no”,
“installed_version”: “1.0”,
“ocsid”: “173950”,
“types”: “”
},
“libreonline”: {
“enabled”: “no”,
“installed_version”: “0.1”,
“ocsid”: “174455”,
“types”: “”
},
“logreader”: {
“enabled”: “no”,
“installed_version”: “2.0.0”,
“ocsid”: “170871”,
“types”: “”
},
“lookup_server_connector”: {
“enabled”: “yes”,
“installed_version”: “1.0.0”,
“types”: “authentication”
},
“music”: {
“enabled”: “no”,
“installed_version”: “0.3.12”,
“ocsid”: “164319”,
“types”: “filesystem”
},
“nextcloud_announcements”: {
“enabled”: “no”,
“installed_version”: “1.1”,
“pub_date”: “Sat, 10 Dec 2016 00:00:00 +0100”,
“types”: “logging”
},
“notifications”: {
“enabled”: “yes”,
“installed_version”: “2.0.0”,
“types”: “logging”
},
“oauth2”: {
“enabled”: “yes”,
“installed_version”: “1.0.5”,
“types”: “authentication”
},
“password_policy”: {
“enabled”: “no”,
“installed_version”: “1.2.2”,
“types”: “”
},
“provisioning_api”: {
“enabled”: “yes”,
“installed_version”: “1.2.0”,
“types”: “prevent_group_restriction”
},
“quota_warning”: {
“enabled”: “no”,
“installed_version”: “1.0.0”,
“types”: “filesystem”
},
“richdocuments”: {
“enabled”: “no”,
“installed_version”: “1.12.33”,
“types”: “prevent_group_restriction”
},
“serverinfo”: {
“enabled”: “no”,
“installed_version”: “1.2.0”,
“types”: “”
},
“sharebymail”: {
“enabled”: “no”,
“installed_version”: “1.2.0”,
“types”: “filesystem”
},
“spreedme”: {
“OWNCLOUD_TEMPORARY_PASSWORD_LOGIN_ENABLED”: “true”,
“OWNCLOUD_TEMPORARY_PASSWORD_SIGNING_KEY”: “f47d65a2e71b638b07acfdf6bb378718238eb1dff8b505bd7019076b0e9a55be”,
“SPREED_WEBRTC_BASEPATH”: “/webrtc/”,
“SPREED_WEBRTC_IS_SHARED_INSTANCE”: “false”,
“SPREED_WEBRTC_ORIGIN”: “”,
“SPREED_WEBRTC_SHAREDSECRET”: “a3a154558abf0b673bbc497a51e6ceec61942353e97182d68b6f0087b1b1a45f”,
“enabled”: “no”,
“installed_version”: “0.3.9”,
“is_set_up”: “true”,
“ocsid”: “174436”,
“types”: “”
},
“survey_client”: {
“apps”: “yes”,
“database”: “yes”,
“enabled”: “no”,
“encryption”: “yes”,
“files_sharing”: “yes”,
“installed_version”: “1.0.0”,
“last_report”: "{"id":"oc6vms6id1ch","items":[["server","version","12.0.0.29"],[\"server\",\"code\",\"other\"],[\"server\",\"enable_avatars\",\"yes\"],[\"server\",\"enable_previews\",\"yes\"],[\"server\",\"memcache.local\",\"\\\\OC\\\\Memcache\\\\Redis\"],[\"server\",\"memcache.distributed\",\"none\"],[\"server\",\"asset-pipeline.enabled\",\"no\"],[\"server\",\"filelocking.enabled\",\"yes\"],[\"server\",\"memcache.locking\",\"\\\\OC\\\\Memcache\\\\Redis\"],[\"server\",\"debug\",\"no\"],[\"server\",\"cron\",\"webcron\"],[\"php\",\"version\",\"5.6.30\"],[\"php\",\"memory_limit\",536870912],[\"php\",\"max_execution_time\",3600],[\"php\",\"upload_max_filesize\",1073741824],[\"database\",\"type\",\"mysql\"],[\"database\",\"version\",\"10.1.23\"],[\"database\",\"size\",6111232],[\"apps\",\"activity\",\"2.5.2\"],[\"apps\",\"activitydefaults\",\"disabled\"],[\"apps\",\"admin_notifications\",\"1.0.0\"],[\"apps\",\"announcementcenter\",\"disabled\"],[\"apps\",\"audios\",\"disabled\"],[\"apps\",\"bruteforcesettings\",\"1.0.2\"],[\"apps\",\"calendar\",\"1.5.3\"],[\"apps\",\"circles\",\"0.10.0\"],[\"apps\",\"comments\",\"1.2.0\"],[\"apps\",\"configreport\",\"disabled\"],[\"apps\",\"contacts\",\"1.5.3\"],[\"apps\",\"dav\",\"1.3.0\"],[\"apps\",\"documents\",\"disabled\"],[\"apps\",\"encryption\",\"1.6.0\"],[\"apps\",\"federatedfilesharing\",\"1.2.0\"],[\"apps\",\"federation\",\"1.2.0\"],[\"apps\",\"files\",\"1.7.2\"],[\"apps\",\"files_antivirus\",\"disabled\"],[\"apps\",\"files_external\",\"1.3.0\"],[\"apps\",\"files_locking\",\"disabled\"],[\"apps\",\"files_pdfviewer\",\"1.1.1\"],[\"apps\",\"files_sharing\",\"1.4.0\"],[\"apps\",\"files_texteditor\",\"2.4.1\"],[\"apps\",\"files_trashbin\",\"1.2.0\"],[\"apps\",\"files_versions\",\"1.5.0\"],[\"apps\",\"files_videojs-sublime\",\"disabled\"],[\"apps\",\"files_videoplayer\",\"disabled\"],[\"apps\",\"files_videoviewer\",\"disabled\"],[\"apps\",\"firstrunwizard\",\"2.1\"],[\"apps\",\"gallery\",\"17.0.0\"],[\"apps\",\"html5_videoplayer\",\"disabled\"],[\"apps\",\"libreonline\",\"disabled\"],[\"apps\",\"logreader\",\"2.0.0\"],[\"apps\",\"lookup_server_connector\",\"1.0.0\"],[\"apps\",\"music\",\"disabled\"],[\"apps\",\"nextcloud_announcements\",\"1.1\"],[\"apps\",\"notifications\",\"2.0.0\"],[\"apps\",\"oauth2\",\"1.0.5\"],[\"apps\",\"password_policy\",\"1.2.2\"],[\"apps\",\"provisioning_api\",\"1.2.0\"],[\"apps\",\"quota_warning\",\"1.0.0\"],[\"apps\",\"richdocuments\",\"disabled\"],[\"apps\",\"serverinfo\",\"1.2.0\"],[\"apps\",\"sharebymail\",\"1.2.0\"],[\"apps\",\"spreedme\",\"0.3.9\"],[\"apps\",\"survey_client\",\"1.0.0\"],[\"apps\",\"systemtags\",\"1.2.0\"],[\"apps\",\"templateeditor\",\"disabled\"],[\"apps\",\"theming\",\"1.3.0\"],[\"apps\",\"twofactor_backupcodes\",\"1.1.1\"],[\"apps\",\"updatenotification\",\"1.2.0\"],[\"apps\",\"updater\",\"disabled\"],[\"apps\",\"user_external\",\"0.4\"],[\"apps\",\"workflowengine\",\"1.2.0\"],[\"stats\",\"num_files\",3229],[\"stats\",\"num_users\",6],[\"stats\",\"num_storages\",19],[\"stats\",\"num_storages_local\",1],[\"stats\",\"num_storages_home\",6],[\"stats\",\"num_storages_other\",12],[\"stats\",\"num_comments\",0],[\"stats\",\"num_comment_markers\",0],[\"stats\",\"num_systemtags\",0],[\"stats\",\"num_systemtags_mappings\",0],[\"files_sharing\",\"num_shares\",12],[\"files_sharing\",\"num_shares_user\",2],[\"files_sharing\",\"num_shares_groups\",1],[\"files_sharing\",\"num_shares_link\",9],[\"files_sharing\",\"num_shares_link_no_password\",9],[\"files_sharing\",\"num_fed_shares_sent\",0],[\"files_sharing\",\"num_fed_shares_received\",0],[\"files_sharing\",\"permissions_1_1\",\"1\"],[\"files_sharing\",\"permissions_3_1\",\"9\"],[\"files_sharing\",\"permissions_0_17\",\"2\"],[\"encryption\",\"enabled\",\"yes\"]]}",
“last_sent”: “1498034829”,
“php”: “yes”,
“server”: “yes”,
“stats”: “yes”,
“types”: “”
},
“systemtags”: {
“enabled”: “yes”,
“installed_version”: “1.2.0”,
“types”: “logging”
},
“templateeditor”: {
“enabled”: “no”,
“installed_version”: “0.2”,
“types”: “”
},
“theming”: {
“cachebuster”: “9”,
“color”: “#668bc1”,
“enabled”: “yes”,
“installed_version”: “1.3.0”,
“logoMime”: “image/png”,
“name”: “wormCloud”,
“slogan”: “Deine Dateien unter deiner Kontrolle”,
“types”: “logging”,
“url”: “https://cloud.test.de”
},
“twofactor_backupcodes”: {
“enabled”: “yes”,
“installed_version”: “1.1.1”,
“types”: “”
},
“updatenotification”: {
“admin_notifications”: “1.0.0”,
“bruteforcesettings”: “1.0.2”,
“calendar”: “1.5.3”,
“circles”: “0.11.0”,
“contacts”: “1.5.3”,
“core”: “9.1.1”,
“enabled”: “yes”,
“installed_version”: “1.2.0”,
“quota_warning”: “1.0.0”,
“richdocuments”: “1.11.33”,
“spreedme”: “0.3.9”,
“types”: “”,
“update_check_errors”: “0”
},
“updater”: {
“enabled”: “no”,
“installed_version”: “0.6”,
“types”: “”
},
“user_external”: {
“enabled”: “yes”,
“installed_version”: “0.4”,
“ocsid”: “166060”,
“types”: “authentication,prelogin”
},
“workflowengine”: {
“enabled”: “yes”,
“installed_version”: “1.2.0”,
“types”: “filesystem”
}
}
}

The output of your Apache/nginx/system log in `/var/log/nginx/error.log:

2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 http header: "user-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 get indexed header name: 77
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 http header: "accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 get indexed header name: 76
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 http header: "accept-language: en-US,en;q=0.5"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 get indexed header name: 75
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 http header: "accept-encoding: gzip, deflate, br"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 get indexed header name: 62
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 get indexed header name: 71
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 get indexed header name: 70
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 get indexed header name: 69
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 get indexed header name: 74
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 http header: "dnt: 1"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 get indexed header name: 73
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 http header: "upgrade-insecure-requests: 1"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 http request line: "GET /apps/files/ HTTP/2.0"
2017/07/26 20:54:28 [debug] 10146#10146: *85 generic phase: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 rewrite phase: 1
2017/07/26 20:54:28 [debug] 10146#10146: *85 test location: "/"
2017/07/26 20:54:28 [debug] 10146#10146: *85 test location: ".well-known/carddav"
2017/07/26 20:54:28 [debug] 10146#10146: *85 test location: "robots.txt"
2017/07/26 20:54:28 [debug] 10146#10146: *85 test location: ~ "^/(?:build|tests|config|lib|3rdparty|templates|data)/"
2017/07/26 20:54:28 [debug] 10146#10146: *85 test location: ~ "^/(?:\.|autotest|occ|issue|indie|db_|console)"
2017/07/26 20:54:28 [debug] 10146#10146: *85 test location: ~ "^/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-provider/.+)\.php(?:$|/)"
2017/07/26 20:54:28 [debug] 10146#10146: *85 test location: ~ "^/(?:updater|ocs-provider)(?:$|/)"
2017/07/26 20:54:28 [debug] 10146#10146: *85 test location: ~ "\.(?:css|js|woff|svg|gif)$"
2017/07/26 20:54:28 [debug] 10146#10146: *85 test location: ~ "\.(?:png|html|ttf|ico|jpg|jpeg)$"
2017/07/26 20:54:28 [debug] 10146#10146: *85 using configuration "/"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http cl:-1 max:536870912
2017/07/26 20:54:28 [debug] 10146#10146: *85 rewrite phase: 3
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script regex: "^"
2017/07/26 20:54:28 [notice] 10146#10146: *85 "^" matches "/apps/files/", client: 92.196.98.52, server: cloud.test.de, request: "GET /apps/files/ HTTP/2.0", host: "cloud.test.de"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "/index.php"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "/apps/files/"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script regex end
2017/07/26 20:54:28 [notice] 10146#10146: *85 rewritten data: "/index.php/apps/files/", args: "", client: 92.196.98.52, server: cloud.test.de, request: "GET /apps/files/ HTTP/2.0", host: "cloud.test.de"
2017/07/26 20:54:28 [debug] 10146#10146: *85 post rewrite phase: 4
2017/07/26 20:54:28 [debug] 10146#10146: *85 uri changes: 11
2017/07/26 20:54:28 [debug] 10146#10146: *85 test location: "/"
2017/07/26 20:54:28 [debug] 10146#10146: *85 test location: ".well-known/carddav"
2017/07/26 20:54:28 [debug] 10146#10146: *85 test location: "robots.txt"
2017/07/26 20:54:28 [debug] 10146#10146: *85 test location: ~ "^/(?:build|tests|config|lib|3rdparty|templates|data)/"
2017/07/26 20:54:28 [debug] 10146#10146: *85 test location: ~ "^/(?:\.|autotest|occ|issue|indie|db_|console)"
2017/07/26 20:54:28 [debug] 10146#10146: *85 test location: ~ "^/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-provider/.+)\.php(?:$|/)"
2017/07/26 20:54:28 [debug] 10146#10146: *85 using configuration "^/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-provider/.+)\.php(?:$|/)"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http cl:-1 max:536870912
2017/07/26 20:54:28 [debug] 10146#10146: *85 rewrite phase: 3
2017/07/26 20:54:28 [debug] 10146#10146: *85 post rewrite phase: 4
2017/07/26 20:54:28 [debug] 10146#10146: *85 generic phase: 5
2017/07/26 20:54:28 [debug] 10146#10146: *85 generic phase: 6
2017/07/26 20:54:28 [debug] 10146#10146: *85 generic phase: 7
2017/07/26 20:54:28 [debug] 10146#10146: *85 access phase: 8
2017/07/26 20:54:28 [debug] 10146#10146: *85 access phase: 9
2017/07/26 20:54:28 [debug] 10146#10146: *85 access phase: 10
2017/07/26 20:54:28 [debug] 10146#10146: *85 post access phase: 11
2017/07/26 20:54:28 [debug] 10146#10146: *85 try files phase: 12
2017/07/26 20:54:28 [debug] 10146#10146: *85 http body new buf t:0 f:0 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 http init upstream, client timer: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 posix_memalign: 0000558F5592BA60:4096 @16
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "QUERY_STRING"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "QUERY_STRING: "
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "REQUEST_METHOD"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "GET"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "REQUEST_METHOD: GET"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "CONTENT_TYPE"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "CONTENT_TYPE: "
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "CONTENT_LENGTH"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "CONTENT_LENGTH: "
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "SCRIPT_NAME"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "/index.php"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "SCRIPT_NAME: /index.php"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "REQUEST_URI"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "/apps/files/"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "REQUEST_URI: /apps/files/"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "DOCUMENT_URI"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "/index.php/apps/files/"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "DOCUMENT_URI: /index.php/apps/files/"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "DOCUMENT_ROOT"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "/var/www/owncloud"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "DOCUMENT_ROOT: /var/www/owncloud"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "SERVER_PROTOCOL"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "HTTP/2.0"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "SERVER_PROTOCOL: HTTP/2.0"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "REQUEST_SCHEME"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "https"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "REQUEST_SCHEME: https"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "HTTPS"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "on"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "HTTPS: on"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "GATEWAY_INTERFACE"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "CGI/1.1"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "SERVER_SOFTWARE"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "nginx/"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "1.10.3"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "SERVER_SOFTWARE: nginx/1.10.3"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "REMOTE_ADDR"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "92.196.98.52"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "REMOTE_ADDR: 92.196.98.52"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "REMOTE_PORT"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "39322"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "REMOTE_PORT: 39322"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "SERVER_ADDR"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "85.93.36.253"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "SERVER_ADDR: 85.93.36.253"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "SERVER_PORT"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "443"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "SERVER_PORT: 443"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "SERVER_NAME"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "cloud.test.de"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "SERVER_NAME: cloud.test.de"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "REDIRECT_STATUS"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "200"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "REDIRECT_STATUS: 200"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "SCRIPT_FILENAME"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "/var/www/owncloud"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "/index.php"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "SCRIPT_FILENAME: /var/www/owncloud/index.php"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "PATH_INFO"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script var: "/apps/files/"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "PATH_INFO: /apps/files/"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "HTTPS"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "on"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "HTTPS: on"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "modHeadersAvailable"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "true"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "modHeadersAvailable: true"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "front_controller_active"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http script copy: "true"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "front_controller_active: true"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "HTTP_HOST: cloud.test.de"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "HTTP_USER_AGENT: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "HTTP_ACCEPT: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "HTTP_ACCEPT_LANGUAGE: en-US,en;q=0.5"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "HTTP_ACCEPT_ENCODING: gzip, deflate, br"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "HTTP_DNT: 1"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "HTTP_UPGRADE_INSECURE_REQUESTS: 1"
2017/07/26 20:54:28 [debug] 10146#10146: *85 fastcgi param: "HTTP_COOKIE: oc6vms6id1ch=u5vg061f35f3raml356udu0el2; oc_sessionPassphrase=izzJKutSi75spp39uu9ijBzMIMVLwfOzf1lqcIc0L4iG9DWD%2FzXk2gG3ekuDJsxBB%2FDBDqW2N3TsxPInWhQN2F3a50kTtNne6mcWC18YoY4oAzgctJB5wgJhbsY8aWbH; __Host-nc_sameSiteCookielax=true; __Host-nc_sameSiteCookiestrict=true"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http cleanup add: 0000558F557F0AF8
2017/07/26 20:54:28 [debug] 10146#10146: *85 get rr peer, try: 1
2017/07/26 20:54:28 [debug] 10146#10146: *85 stream socket 12
2017/07/26 20:54:28 [debug] 10146#10146: *85 epoll add connection: fd:12 ev:80002005
2017/07/26 20:54:28 [debug] 10146#10146: *85 connect to unix:/var/run/php/php7.0-fpm.sock, fd:12 #113
2017/07/26 20:54:28 [debug] 10146#10146: *85 connected
2017/07/26 20:54:28 [debug] 10146#10146: *85 http upstream connect: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 posix_memalign: 0000558F557EF1A0:128 @16
2017/07/26 20:54:28 [debug] 10146#10146: *85 http upstream send request
2017/07/26 20:54:28 [debug] 10146#10146: *85 http upstream send request body
2017/07/26 20:54:28 [debug] 10146#10146: *85 chain writer buf fl:0 s:1184
2017/07/26 20:54:28 [debug] 10146#10146: *85 chain writer in: 0000558F5592BF60
2017/07/26 20:54:28 [debug] 10146#10146: *85 writev: 1184 of 1184
2017/07/26 20:54:28 [debug] 10146#10146: *85 chain writer out: 0000000000000000
2017/07/26 20:54:28 [debug] 10146#10146: *85 event timer add: 12: 60000:1501095328178
2017/07/26 20:54:28 [debug] 10146#10146: *85 http finalize request: -4, "/index.php/apps/files/?" a:1, c:2
2017/07/26 20:54:28 [debug] 10146#10146: *85 http request count:2 blk:0
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 frame complete pos:0000558F558E36D6 end:0000558F558E36E3
2017/07/26 20:54:28 [debug] 10146#10146: *85 process http2 frame type:8 f:0 l:4 sid:105
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 WINDOW_UPDATE frame sid:105 window:12451840
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 frame complete pos:0000558F558E36E3 end:0000558F558E36E3
2017/07/26 20:54:28 [debug] 10146#10146: *85 event timer del: 3: 1501095448143
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 write handler
2017/07/26 20:54:28 [debug] 10146#10146: *85 http upstream request: "/index.php/apps/files/?"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http upstream dummy handler
2017/07/26 20:54:28 [debug] 10146#10146: *85 http upstream request: "/index.php/apps/files/?"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http upstream process header
2017/07/26 20:54:28 [debug] 10146#10146: *85 malloc: 0000558F559236C0:4096
2017/07/26 20:54:28 [debug] 10146#10146: *85 recv: fd:12 640 of 4096
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record byte: 01
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record byte: 06
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record byte: 00
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record byte: 01
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record byte: 02
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record byte: 66
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record byte: 02
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record byte: 00
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record length: 614
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi parser: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi header: "Status: 302 Found"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi parser: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi header: "Expires: Thu, 19 Nov 1981 08:52:00 GMT"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi parser: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi header: "Cache-Control: no-store, no-cache, must-revalidate"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi parser: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi header: "Pragma: no-cache"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi parser: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi header: "Content-Security-Policy: default-src 'self'; script-src 'self' 'unsafe-eval' 'nonce-ZkM1ZEtLUWRPMFExc3RhaTM2dytBRE5nSHgrM1FSbjAyMEdVL1ZkR3Fsdz06TFhZNGIraE1VSGRmOEw2UjZzcFNMMUVzVlhuUklHbWRvakhadVNSeDhBUT0='; 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';"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi parser: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi header: "X-Frame-Options: SAMEORIGIN"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi parser: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi header: "Location: https://cloud.test.de/apps/files/"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi parser: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi header: "Content-type: text/html; charset=UTF-8"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi parser: 1
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi header done
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 header filter
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 output header: ":status: 302"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 output header: "server: nginx"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 output header: "date: Wed, 26 Jul 2017 18:54:28 GMT"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 output header: "content-type: text/html; charset=UTF-8"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 output header: "location: https://cloud.test.de/apps/files/"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 output header: "expires: Thu, 19 Nov 1981 08:52:00 GMT"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 output header: "cache-control: no-store, no-cache, must-revalidate"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 output header: "pragma: no-cache"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 output header: "content-security-policy: default-src 'self'; script-src 'self' 'unsafe-eval' 'nonce-ZkM1ZEtLUWRPMFExc3RhaTM2dytBRE5nSHgrM1FSbjAyMEdVL1ZkR3Fsdz06TFhZNGIraE1VSGRmOEw2UjZzcFNMMUVzVlhuUklHbWRvakhadVNSeDhBUT0='; 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';"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 output header: "x-frame-options: SAMEORIGIN"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 output header: "x-content-type-options: nosniff"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 output header: "x-xss-protection: 1; mode=block"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 output header: "x-robots-tag: none"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 output header: "x-download-options: noopen"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 output header: "x-permitted-cross-domain-policies: none"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2:105 create HEADERS frame 0000558F5592C868: len:590
2017/07/26 20:54:28 [debug] 10146#10146: *85 http cleanup add: 0000558F5592C960
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 frame out: 0000558F5592C868 sid:105 bl:1 len:590
2017/07/26 20:54:28 [debug] 10146#10146: *85 malloc: 0000558F559246D0:16384
2017/07/26 20:54:28 [debug] 10146#10146: *85 SSL buf copy: 9
2017/07/26 20:54:28 [debug] 10146#10146: *85 SSL buf copy: 590
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2:105 HEADERS frame 0000558F5592C868 was sent
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 frame sent: 0000558F5592C868 sid:105 bl:1 len:590
2017/07/26 20:54:28 [debug] 10146#10146: *85 http cacheable: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 posix_memalign: 0000558F5592D630:4096 @16
2017/07/26 20:54:28 [debug] 10146#10146: *85 http upstream process upstream
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe read upstream: 1
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe preread: 18
2017/07/26 20:54:28 [debug] 10146#10146: *85 readv: 1, last:3456
2017/07/26 20:54:28 [debug] 10146#10146: *85 readv() not ready (11: Resource temporarily unavailable)
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe recv chain: -2
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe buf free s:0 t:1 f:0 0000558F559236C0, pos 0000558F5592392E, size: 18 file: 0, size: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe length: -1
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe write downstream: 1
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe write busy: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe write: out:0000000000000000, f:0
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe read upstream: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe buf free s:0 t:1 f:0 0000558F559236C0, pos 0000558F5592392E, size: 18 file: 0, size: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe length: -1
2017/07/26 20:54:28 [debug] 10146#10146: *85 event timer: 12, old: 1501095328178, new: 1501095328292
2017/07/26 20:54:28 [debug] 10146#10146: *85 http upstream request: "/index.php/apps/files/?"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http upstream dummy handler
2017/07/26 20:54:28 [debug] 10146#10146: *85 http upstream request: "/index.php/apps/files/?"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http upstream process upstream
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe read upstream: 1
2017/07/26 20:54:28 [debug] 10146#10146: *85 readv: 1, last:3456
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe recv chain: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe buf free s:0 t:1 f:0 0000558F559236C0, pos 0000558F5592392E, size: 18 file: 0, size: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe length: -1
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record byte: 01
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record byte: 03
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record byte: 00
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record byte: 01
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record byte: 00
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record byte: 08
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record byte: 00
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record byte: 00
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi record length: 8
2017/07/26 20:54:28 [debug] 10146#10146: *85 http fastcgi sent end request
2017/07/26 20:54:28 [debug] 10146#10146: *85 free: 0000558F559236C0
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe write downstream: 1
2017/07/26 20:54:28 [debug] 10146#10146: *85 pipe write downstream done
2017/07/26 20:54:28 [debug] 10146#10146: *85 event timer: 12, old: 1501095328178, new: 1501095328292
2017/07/26 20:54:28 [debug] 10146#10146: *85 http upstream exit: 0000000000000000
2017/07/26 20:54:28 [debug] 10146#10146: *85 finalize http upstream request: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 finalize http fastcgi request
2017/07/26 20:54:28 [debug] 10146#10146: *85 free rr peer 1 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 close http upstream connection: 12
2017/07/26 20:54:28 [debug] 10146#10146: *85 free: 0000558F557EF1A0, unused: 48
2017/07/26 20:54:28 [debug] 10146#10146: *85 event timer del: 12: 1501095328178
2017/07/26 20:54:28 [debug] 10146#10146: *85 reusable connection: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 http upstream temp fd: -1
2017/07/26 20:54:28 [debug] 10146#10146: *85 http output filter "/index.php/apps/files/?"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http copy filter: "/index.php/apps/files/?"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http postpone filter "/index.php/apps/files/?" 00007FFE52A98FF0
2017/07/26 20:54:28 [debug] 10146#10146: *85 write new buf t:0 f:0 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 http write filter: l:1 f:0 s:0
2017/07/26 20:54:28 [debug] 10146#10146: *85 http write filter limit 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2:105 create DATA frame 0000558F5592C868: len:0 flags:1
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 frame out: 0000558F5592C868 sid:105 bl:0 len:0
2017/07/26 20:54:28 [debug] 10146#10146: *85 SSL buf copy: 9
2017/07/26 20:54:28 [debug] 10146#10146: *85 SSL to write: 608
2017/07/26 20:54:28 [debug] 10146#10146: *85 SSL_write: 608
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2:105 DATA frame 0000558F5592C868 was sent
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 frame sent: 0000558F5592C868 sid:105 bl:0 len:0
2017/07/26 20:54:28 [debug] 10146#10146: *85 http write filter 0000000000000000
2017/07/26 20:54:28 [debug] 10146#10146: *85 http copy filter: 0 "/index.php/apps/files/?"
2017/07/26 20:54:28 [debug] 10146#10146: *85 http finalize request: 0, "/index.php/apps/files/?" a:1, c:1
2017/07/26 20:54:28 [debug] 10146#10146: *85 http request count:1 blk:0
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 close stream 105, queued 0, processing 1
2017/07/26 20:54:28 [debug] 10146#10146: *85 http close request
2017/07/26 20:54:28 [debug] 10146#10146: *85 http log handler
2017/07/26 20:54:28 [debug] 10146#10146: *85 free: 0000000000000000
2017/07/26 20:54:28 [debug] 10146#10146: *85 free: 0000558F55875550, unused: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 free: 0000558F557EFB30, unused: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 free: 0000558F5592BA60, unused: 0
2017/07/26 20:54:28 [debug] 10146#10146: *85 free: 0000558F5592D630, unused: 3569
2017/07/26 20:54:28 [debug] 10146#10146: *85 free: 0000558F55881430, unused: 358
2017/07/26 20:54:28 [debug] 10146#10146: *85 post event 0000558F558BF810
2017/07/26 20:54:28 [debug] 10146#10146: *85 delete posted event 0000558F558BF810
2017/07/26 20:54:28 [debug] 10146#10146: *85 http2 handle connection handler
2017/07/26 20:54:28 [debug] 10146#10146: *85 free: 0000558F557EDF10, unused: 3488
2017/07/26 20:54:28 [debug] 10146#10146: *85 free: 0000558F559246D0
2017/07/26 20:54:28 [debug] 10146#10146: *85 reusable connection: 1
2017/07/26 20:54:28 [debug] 10146#10146: *85 event timer add: 3: 180000:1501095448292