diff --git a/AUTH_API.md b/AUTH_API.md index ad21aee..808e0ed 100644 --- a/AUTH_API.md +++ b/AUTH_API.md @@ -1,8 +1,5 @@ # Authentication API Documentation -## Overview - -The nostr_core_lib unified request validation system provides a comprehensive authentication and authorization framework for Nostr-based applications. It combines Nostr event validation with flexible rule-based authentication in a single API call. ## Authentication Flow and Order of Operations @@ -505,191 +502,3 @@ The rule evaluation order is specifically designed for security: 4. **Default Deny** - If whitelists exist but don't match, deny This ensures that even if an attacker bypasses one layer, subsequent layers will catch the attack. - -## Core API - -### Primary Function - -```c -int nostr_validate_request(nostr_request_t* request, nostr_request_result_t* result); -``` - -This single function handles: -- Nostr event signature validation -- Event structure validation (required fields, timestamps) -- Authentication rule evaluation -- Public key extraction and validation - -### Request Structure - -```c -typedef struct { - const char* event_json; // Raw Nostr event JSON - const char* app_id; // Application identifier ("ginxsom", "c-relay") - const char* operation; // Operation type ("upload", "delete", "list") - const char* content_hash; // SHA-256 hash for file operations (optional) - const char* mime_type; // MIME type for upload operations (optional) - size_t content_size; // File size for upload operations (0 if N/A) -} nostr_request_t; -``` - -### Result Structure - -```c -typedef struct { - int is_valid; // 1 if request is valid, 0 otherwise - int error_code; // Specific error code (see Error Codes) - char error_message[512]; // Human-readable error description - char pubkey[65]; // Extracted public key (hex, null-terminated) - time_t timestamp; // Event timestamp - char event_id[65]; // Event ID (hex, null-terminated) -} nostr_request_result_t; -``` - -## Authentication Rules System - -The system supports priority-based authentication rules that are evaluated in order: - -### Rule Types - -1. **NOSTR_AUTH_RULE_PUBKEY_WHITELIST** - Allow specific public keys -2. **NOSTR_AUTH_RULE_PUBKEY_BLACKLIST** - Block specific public keys -3. **NOSTR_AUTH_RULE_HASH_BLACKLIST** - Block specific content hashes -4. **NOSTR_AUTH_RULE_MIME_RESTRICTION** - Restrict allowed MIME types -5. **NOSTR_AUTH_RULE_SIZE_LIMIT** - Enforce maximum file sizes - -### Rule Evaluation - -- Rules are processed by priority (lower numbers = higher priority) -- First matching rule determines the outcome -- ALLOW rules permit the request -- DENY rules reject the request -- If no rules match, the default action is ALLOW - -### Rule Caching - -The system includes an intelligent caching mechanism: -- LRU (Least Recently Used) eviction policy -- Configurable cache size (default: 1000 entries) -- Cache keys based on pubkey + operation + content hash -- Automatic cache invalidation when rules change - -## Database Backend - -### Pluggable Architecture - -The system uses a pluggable database backend interface: - -```c -typedef struct { - int (*init)(const char* connection_string, void** context); - int (*get_rules)(void* context, const char* app_id, - nostr_auth_rule_t** rules, int* count); - int (*cleanup)(void* context); -} nostr_db_backend_t; -``` - -### SQLite Implementation - -Default implementation uses SQLite with the following schema: - -```sql --- Authentication rules table (per application) -CREATE TABLE auth_rules_[APP_ID] ( - id INTEGER PRIMARY KEY AUTOINCREMENT, - priority INTEGER NOT NULL, - rule_type INTEGER NOT NULL, - action INTEGER NOT NULL, - pattern TEXT, - value_int INTEGER, - created_at INTEGER DEFAULT (strftime('%s', 'now')), - updated_at INTEGER DEFAULT (strftime('%s', 'now')) -); -``` - -## Error Codes - -The system uses specific error codes for different failure scenarios: - -### Authentication Rule Errors -- **-50**: `NOSTR_AUTH_ERROR_INVALID_EVENT` - Malformed Nostr event -- **-51**: `NOSTR_AUTH_ERROR_INVALID_SIGNATURE` - Invalid event signature -- **-52**: `NOSTR_AUTH_ERROR_PUBKEY_BLOCKED` - Public key is blacklisted -- **-53**: `NOSTR_AUTH_ERROR_HASH_BLOCKED` - Content hash is blacklisted -- **-54**: `NOSTR_AUTH_ERROR_MIME_RESTRICTED` - MIME type not allowed -- **-55**: `NOSTR_AUTH_ERROR_SIZE_EXCEEDED` - File size limit exceeded - -### NIP-42 Specific Errors -- **-200**: `NIP42_ERROR_INVALID_RELAY_URL` - Relay URL mismatch or missing -- **-201**: `NIP42_ERROR_INVALID_CHALLENGE` - Challenge missing or malformed -- **-202**: `NIP42_ERROR_CHALLENGE_EXPIRED` - Challenge has expired -- **-203**: `NIP42_ERROR_CHALLENGE_USED` - Challenge already consumed -- **-204**: `NIP42_ERROR_CHALLENGE_NOT_FOUND` - Challenge not found in storage -- **-205**: `NIP42_ERROR_WRONG_EVENT_KIND` - Expected kind 22242 for NIP-42 -- **-206**: `NIP42_ERROR_MISSING_TAGS` - Required relay or challenge tags missing -- **-207**: `NIP42_ERROR_URL_NORMALIZATION` - Failed to normalize relay URL -- **-208**: `NIP42_ERROR_VALIDATION_FAILED` - General NIP-42 validation failure - -## Usage Examples - -### Basic Validation - -```c -#include "nostr_core/request_validator.h" - -// Initialize the system (once per application) -int result = nostr_request_validator_init("db/myapp.db", "myapp"); -if (result != 0) { - fprintf(stderr, "Failed to initialize validator: %d\n", result); - return -1; -} - -// Validate a request -nostr_request_t request = { - .event_json = "{\"kind\":24242,\"pubkey\":\"abc123...\",\"sig\":\"def456...\"}", - .app_id = "myapp", - .operation = "upload", - .content_hash = "sha256hash...", - .mime_type = "text/plain", - .content_size = 1024 -}; - -nostr_request_result_t result; -int status = nostr_validate_request(&request, &result); - -if (result.is_valid) { - printf("Request authorized for pubkey: %s\n", result.pubkey); -} else { - printf("Request denied: %s (code: %d)\n", result.error_message, result.error_code); -} -``` - -### Ginxsom Integration - -The ginxsom application has been updated to use this system: - -```c -// Replace old authenticate_request_with_rules() calls with: -nostr_request_t auth_request = { - .event_json = event_json, - .app_id = "ginxsom", - .operation = "upload", // or "list", "delete" - .content_hash = calculated_hash, - .mime_type = detected_mime_type, - .content_size = file_size -}; - -nostr_request_result_t auth_result; -int auth_status = nostr_validate_request(&auth_request, &auth_result); - -if (!auth_result.is_valid) { - printf("Status: 403\r\n"); - printf("Content-Type: application/json\r\n\r\n"); - printf("{\"error\":\"Authentication failed\",\"message\":\"%s\"}\n", - auth_result.error_message); - return; -} - -// Use auth_result.pubkey for the authenticated public key -``` - diff --git a/Makefile b/Makefile index af2b13d..b15e80a 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ BUILDDIR = build TARGET = $(BUILDDIR)/ginxsom-fcgi # Source files -SOURCES = $(SRCDIR)/main.c $(SRCDIR)/admin_api.c $(SRCDIR)/bud04.c $(SRCDIR)/bud06.c $(SRCDIR)/bud08.c $(SRCDIR)/bud09.c +SOURCES = $(SRCDIR)/main.c $(SRCDIR)/admin_api.c $(SRCDIR)/bud04.c $(SRCDIR)/bud06.c $(SRCDIR)/bud08.c $(SRCDIR)/bud09.c $(SRCDIR)/request_validator.c OBJECTS = $(SOURCES:$(SRCDIR)/%.c=$(BUILDDIR)/%.o) # Default target diff --git a/tests/tests/auth_test_tmp/auth_disabled.txt b/Trash/auth_test_tmp/auth_disabled.txt similarity index 100% rename from tests/tests/auth_test_tmp/auth_disabled.txt rename to Trash/auth_test_tmp/auth_disabled.txt diff --git a/tests/tests/auth_test_tmp/blacklisted_file.txt b/Trash/auth_test_tmp/blacklisted_file.txt similarity index 100% rename from tests/tests/auth_test_tmp/blacklisted_file.txt rename to Trash/auth_test_tmp/blacklisted_file.txt diff --git a/tests/tests/auth_test_tmp/blacklisted_upload.txt b/Trash/auth_test_tmp/blacklisted_upload.txt similarity index 100% rename from tests/tests/auth_test_tmp/blacklisted_upload.txt rename to Trash/auth_test_tmp/blacklisted_upload.txt diff --git a/tests/tests/auth_test_tmp/corrupted_sig.txt b/Trash/auth_test_tmp/corrupted_sig.txt similarity index 100% rename from tests/tests/auth_test_tmp/corrupted_sig.txt rename to Trash/auth_test_tmp/corrupted_sig.txt diff --git a/tests/tests/auth_test_tmp/expired_event.txt b/Trash/auth_test_tmp/expired_event.txt similarity index 100% rename from tests/tests/auth_test_tmp/expired_event.txt rename to Trash/auth_test_tmp/expired_event.txt diff --git a/tests/tests/auth_test_tmp/hash_mismatch.txt b/Trash/auth_test_tmp/hash_mismatch.txt similarity index 100% rename from tests/tests/auth_test_tmp/hash_mismatch.txt rename to Trash/auth_test_tmp/hash_mismatch.txt diff --git a/tests/tests/auth_test_tmp/missing_t_tag.txt b/Trash/auth_test_tmp/missing_t_tag.txt similarity index 100% rename from tests/tests/auth_test_tmp/missing_t_tag.txt rename to Trash/auth_test_tmp/missing_t_tag.txt diff --git a/tests/tests/auth_test_tmp/missing_x_tag.txt b/Trash/auth_test_tmp/missing_x_tag.txt similarity index 100% rename from tests/tests/auth_test_tmp/missing_x_tag.txt rename to Trash/auth_test_tmp/missing_x_tag.txt diff --git a/Trash/auth_test_tmp/nip42_challenge b/Trash/auth_test_tmp/nip42_challenge new file mode 100644 index 0000000..455d730 --- /dev/null +++ b/Trash/auth_test_tmp/nip42_challenge @@ -0,0 +1 @@ +2ca8fe3cf3eb0fa615b26e0ad83c15ebf57682a1ef8f65272f332dd2e7cc8f07 diff --git a/Trash/auth_test_tmp/nip42_test.txt b/Trash/auth_test_tmp/nip42_test.txt new file mode 100644 index 0000000..156226a --- /dev/null +++ b/Trash/auth_test_tmp/nip42_test.txt @@ -0,0 +1 @@ +NIP-42 authentication test content diff --git a/tests/tests/auth_test_tmp/nonhex_key.txt b/Trash/auth_test_tmp/nonhex_key.txt similarity index 100% rename from tests/tests/auth_test_tmp/nonhex_key.txt rename to Trash/auth_test_tmp/nonhex_key.txt diff --git a/tests/tests/auth_test_tmp/random_upload.txt b/Trash/auth_test_tmp/random_upload.txt similarity index 100% rename from tests/tests/auth_test_tmp/random_upload.txt rename to Trash/auth_test_tmp/random_upload.txt diff --git a/tests/tests/auth_test_tmp/short_key.txt b/Trash/auth_test_tmp/short_key.txt similarity index 100% rename from tests/tests/auth_test_tmp/short_key.txt rename to Trash/auth_test_tmp/short_key.txt diff --git a/tests/tests/auth_test_tmp/whitelisted_upload.txt b/Trash/auth_test_tmp/whitelisted_upload.txt similarity index 100% rename from tests/tests/auth_test_tmp/whitelisted_upload.txt rename to Trash/auth_test_tmp/whitelisted_upload.txt diff --git a/tests/tests/auth_test_tmp/wrong_kind.txt b/Trash/auth_test_tmp/wrong_kind.txt similarity index 100% rename from tests/tests/auth_test_tmp/wrong_kind.txt rename to Trash/auth_test_tmp/wrong_kind.txt diff --git a/Trash/debug_auth.log b/Trash/debug_auth.log new file mode 100644 index 0000000..e24c375 --- /dev/null +++ b/Trash/debug_auth.log @@ -0,0 +1,435 @@ +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: 'a1fff0ffefb9eace7230c24e50731f0a91c62f9cefdfe77121c2f607125dffae' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied by hash blacklist rule: TEST_HASH_BLACKLIST +AUTH: pubkey extracted: +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Request validation passed +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NIP-42 authentication requires relay_url and challenge_id +AUTH: pubkey extracted: +AUTH: resource_hash: 'ab0bf82111fa362282601efffd2b09f42270aaefa57afd05feda24b757950c27' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: '2b51c4abbdfe0e5ae9ec0e19b9b4d78ad34da5d5f78f21baaa393f71c3e61c96' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied by hash blacklist rule: TEST_HASH_BLACKLIST +AUTH: pubkey extracted: +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Request validation passed +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NIP-42 authentication requires relay_url and challenge_id +AUTH: pubkey extracted: +AUTH: resource_hash: 'ab0bf82111fa362282601efffd2b09f42270aaefa57afd05feda24b757950c27' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied by hash blacklist rule: TEST_HASH_BLACKLIST +AUTH: pubkey extracted: +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Request validation passed +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NIP-42 authentication requires relay_url and challenge_id +AUTH: pubkey extracted: +AUTH: resource_hash: 'ab0bf82111fa362282601efffd2b09f42270aaefa57afd05feda24b757950c27' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: '18b38ac540aa99331dd8ee37f8481d54a6bf62849ec33be19682e485d3f548c3' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied by hash blacklist rule: TEST_HASH_BLACKLIST +AUTH: pubkey extracted: +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Request validation passed +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NIP-42 authentication requires relay_url and challenge_id +AUTH: pubkey extracted: +AUTH: resource_hash: 'ab0bf82111fa362282601efffd2b09f42270aaefa57afd05feda24b757950c27' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) +AUTH: pubkey extracted: +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: +AUTH: pubkey extracted: +AUTH: resource_hash: '6ae8a75555209fd6c44157c0aed8016e763ff435a19cf186f76863140143ff72' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: +AUTH: pubkey extracted: +AUTH: resource_hash: '2072c39b66b888c7e88d818c5854d2d3c63a00e9c77a816045ef49f73a9c8ac7' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: +AUTH: pubkey extracted: +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: +AUTH: pubkey extracted: +AUTH: resource_hash: 'f152f642ead301c2a32ba3376852c0fa5b45ec770aacc2ee687fb5f9064defe4' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: +AUTH: pubkey extracted: +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: +AUTH: pubkey extracted: +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: +AUTH: pubkey extracted: +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES diff --git a/Trash/debug_pubkey_corruption.log b/Trash/debug_pubkey_corruption.log new file mode 100644 index 0000000..2973d4b --- /dev/null +++ b/Trash/debug_pubkey_corruption.log @@ -0,0 +1,6 @@ +EVENT_JSON: {"kind":24242,"id":"c7f967dca87bdc95b9336eaab7b2db45cc104ac629915aaed235abbdc6a61c70","pubkey":"87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb","created_at":1757347696,"tags":[["t","upload"],["expiration","1757351296"],["x","4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32"]],"content":"","sig":"8138a221fbe7c92a96f0c9eaa157ab4366530212549c633759b92a8d3e68ea7c2ef72e27181815618db8481b41cab6d4b187cd08dd647ec277d40dbe4b28fb07"} + +RAW_PUBKEY: length=64, content='87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +EVENT_JSON: {"kind":24242,"id":"9138329ea2a1e5bc7371ffce9172246a656773d753804d06882f2e6128a2e3af","pubkey":"87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb","created_at":1757347821,"tags":[["t","upload"],["expiration","1757351420"],["x","4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32"]],"content":"","sig":"cdc19f7bcce369bfa963db81912d4976253b50869b76aa2c2d0c4d1fd1e7ef937b66a0ae37a0477912833fa9d26da520d84ddf44dfe4d14af54624d50f8832f0"} + +RAW_PUBKEY: length=64, content='87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' diff --git a/tests/simple_auth_test.sh b/Trash/simple_auth_test.sh similarity index 100% rename from tests/simple_auth_test.sh rename to Trash/simple_auth_test.sh diff --git a/tests/simple_comprehensive_test.sh b/Trash/simple_comprehensive_test.sh similarity index 100% rename from tests/simple_comprehensive_test.sh rename to Trash/simple_comprehensive_test.sh diff --git a/Trash/tests/auth_test_tmp/auth_disabled.txt b/Trash/tests/auth_test_tmp/auth_disabled.txt new file mode 100644 index 0000000..1e93af0 --- /dev/null +++ b/Trash/tests/auth_test_tmp/auth_disabled.txt @@ -0,0 +1 @@ +Upload with auth disabled diff --git a/Trash/tests/auth_test_tmp/blacklisted_file.txt b/Trash/tests/auth_test_tmp/blacklisted_file.txt new file mode 100644 index 0000000..2a691f6 --- /dev/null +++ b/Trash/tests/auth_test_tmp/blacklisted_file.txt @@ -0,0 +1 @@ +test content for hash blacklist diff --git a/Trash/tests/auth_test_tmp/blacklisted_upload.txt b/Trash/tests/auth_test_tmp/blacklisted_upload.txt new file mode 100644 index 0000000..d820353 --- /dev/null +++ b/Trash/tests/auth_test_tmp/blacklisted_upload.txt @@ -0,0 +1 @@ +Content from blacklisted user diff --git a/Trash/tests/auth_test_tmp/corrupted_sig.txt b/Trash/tests/auth_test_tmp/corrupted_sig.txt new file mode 100644 index 0000000..e4cadf9 --- /dev/null +++ b/Trash/tests/auth_test_tmp/corrupted_sig.txt @@ -0,0 +1 @@ +corrupted_sig_test diff --git a/Trash/tests/auth_test_tmp/expired_event.txt b/Trash/tests/auth_test_tmp/expired_event.txt new file mode 100644 index 0000000..e99cc5d --- /dev/null +++ b/Trash/tests/auth_test_tmp/expired_event.txt @@ -0,0 +1 @@ +expired_event_test diff --git a/Trash/tests/auth_test_tmp/hash_mismatch.txt b/Trash/tests/auth_test_tmp/hash_mismatch.txt new file mode 100644 index 0000000..eaf7298 --- /dev/null +++ b/Trash/tests/auth_test_tmp/hash_mismatch.txt @@ -0,0 +1 @@ +hash_mismatch_test diff --git a/Trash/tests/auth_test_tmp/missing_t_tag.txt b/Trash/tests/auth_test_tmp/missing_t_tag.txt new file mode 100644 index 0000000..bda3a0b --- /dev/null +++ b/Trash/tests/auth_test_tmp/missing_t_tag.txt @@ -0,0 +1 @@ +missing_t_tag_test diff --git a/Trash/tests/auth_test_tmp/missing_x_tag.txt b/Trash/tests/auth_test_tmp/missing_x_tag.txt new file mode 100644 index 0000000..540b87b --- /dev/null +++ b/Trash/tests/auth_test_tmp/missing_x_tag.txt @@ -0,0 +1 @@ +missing_x_tag_test diff --git a/Trash/tests/auth_test_tmp/nonhex_key.txt b/Trash/tests/auth_test_tmp/nonhex_key.txt new file mode 100644 index 0000000..71cdf00 --- /dev/null +++ b/Trash/tests/auth_test_tmp/nonhex_key.txt @@ -0,0 +1 @@ +nonhex_key_test diff --git a/Trash/tests/auth_test_tmp/random_upload.txt b/Trash/tests/auth_test_tmp/random_upload.txt new file mode 100644 index 0000000..548b50e --- /dev/null +++ b/Trash/tests/auth_test_tmp/random_upload.txt @@ -0,0 +1 @@ +Content from random user diff --git a/Trash/tests/auth_test_tmp/short_key.txt b/Trash/tests/auth_test_tmp/short_key.txt new file mode 100644 index 0000000..6b1244e --- /dev/null +++ b/Trash/tests/auth_test_tmp/short_key.txt @@ -0,0 +1 @@ +short_key_test diff --git a/Trash/tests/auth_test_tmp/whitelisted_upload.txt b/Trash/tests/auth_test_tmp/whitelisted_upload.txt new file mode 100644 index 0000000..359883a --- /dev/null +++ b/Trash/tests/auth_test_tmp/whitelisted_upload.txt @@ -0,0 +1 @@ +Content from whitelisted user diff --git a/Trash/tests/auth_test_tmp/wrong_kind.txt b/Trash/tests/auth_test_tmp/wrong_kind.txt new file mode 100644 index 0000000..bd9af4e --- /dev/null +++ b/Trash/tests/auth_test_tmp/wrong_kind.txt @@ -0,0 +1 @@ +wrong_kind_test diff --git a/build/admin_api.o b/build/admin_api.o index deb0fd4..97bee40 100644 Binary files a/build/admin_api.o and b/build/admin_api.o differ diff --git a/build/bud04.o b/build/bud04.o index 8487062..b7c22b9 100644 Binary files a/build/bud04.o and b/build/bud04.o differ diff --git a/build/bud06.o b/build/bud06.o index a9c8e1e..57c79c2 100644 Binary files a/build/bud06.o and b/build/bud06.o differ diff --git a/build/ginxsom-fcgi b/build/ginxsom-fcgi index 5406f2e..c55180c 100755 Binary files a/build/ginxsom-fcgi and b/build/ginxsom-fcgi differ diff --git a/build/main.o b/build/main.o index f127200..072da97 100644 Binary files a/build/main.o and b/build/main.o differ diff --git a/build/request_validator.o b/build/request_validator.o new file mode 100644 index 0000000..4c0df36 Binary files /dev/null and b/build/request_validator.o differ diff --git a/config/local-nginx.conf b/config/local-nginx.conf index 955b1c1..f087802 100644 --- a/config/local-nginx.conf +++ b/config/local-nginx.conf @@ -2,8 +2,8 @@ # Comprehensive Blossom Protocol Implementation # Main context - specify error log here to override system default -error_log logs/error.log debug; -pid logs/nginx.pid; +error_log logs/nginx/error.log debug; +pid logs/nginx/nginx.pid; events { worker_connections 1024; @@ -23,7 +23,7 @@ http { default_type application/octet-stream; # Logging (relative to prefix directory) - access_log logs/access.log; + access_log logs/nginx/access.log; # FastCGI upstream configuration upstream fastcgi_backend { diff --git a/db/ginxsom.db b/db/ginxsom.db index 7e1b5c7..fdcc713 100644 Binary files a/db/ginxsom.db and b/db/ginxsom.db differ diff --git a/debug_auth.log b/debug_auth.log index 0e65958..e26ce07 100644 --- a/debug_auth.log +++ b/debug_auth.log @@ -1,15 +1,1155 @@ -AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) -AUTH: pubkey extracted: '' +AUTH: nostr_validate_request returned: 0, valid: 0, reason: +AUTH: pubkey extracted: +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: +AUTH: pubkey extracted: +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' AUTH: operation: 'upload' AUTH: auth_header present: YES -AUTH: nostr_validate_request returned: 0, valid: 1, reason: Request validation passed -AUTH: pubkey extracted: '' -AUTH: resource_hash: '58f079e51ffbcc2eef8302c26b00376fef2ba23f36fc22977db11ff953df2cdc' -AUTH: operation: 'upload' -AUTH: auth_header present: NO -AUTH: nostr_validate_request returned: 0, valid: 1, reason: Request validation passed -AUTH: pubkey extracted: '79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798' -AUTH: resource_hash: 'dc3b1fa72739d6ef4e8a7fd10b76947e3ac9e2b9155d90da84d1148024b177d1' +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '769a740386211c76f81bb235de50a5e6fa463cb4fae25e62625607fc2cfc0f28' +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '769a740386211c76f81bb235de50a5e6fa463cb4fae25e62625607fc2cfc0f28' +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '4ea47c723453762df3f90473ee1d5d8de6456a724116563bf24eaba35ce5cc32' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '769a740386211c76f81bb235de50a5e6fa463cb4fae25e62625607fc2cfc0f28' +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '769a740386211c76f81bb235de50a5e6fa463cb4fae25e62625607fc2cfc0f28' +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '769a740386211c76f81bb235de50a5e6fa463cb4fae25e62625607fc2cfc0f28' +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '769a740386211c76f81bb235de50a5e6fa463cb4fae25e62625607fc2cfc0f28' +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '769a740386211c76f81bb235de50a5e6fa463cb4fae25e62625607fc2cfc0f28' +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '769a740386211c76f81bb235de50a5e6fa463cb4fae25e62625607fc2cfc0f28' +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '769a740386211c76f81bb235de50a5e6fa463cb4fae25e62625607fc2cfc0f28' +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '769a740386211c76f81bb235de50a5e6fa463cb4fae25e62625607fc2cfc0f28' +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '769a740386211c76f81bb235de50a5e6fa463cb4fae25e62625607fc2cfc0f28' +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '769a740386211c76f81bb235de50a5e6fa463cb4fae25e62625607fc2cfc0f28' +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 1, reason: Blossom authentication passed +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb' +AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '769a740386211c76f81bb235de50a5e6fa463cb4fae25e62625607fc2cfc0f28' +AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Request denied by authorization rules +AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' +AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' +AUTH: operation: 'upload' +AUTH: auth_header present: YES +AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization +AUTH: pubkey extracted: +AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' AUTH: operation: 'upload' AUTH: auth_header present: YES diff --git a/gpt_flow.svg b/gpt_flow.svg deleted file mode 100644 index 12d6a2e..0000000 --- a/gpt_flow.svg +++ /dev/null @@ -1,441 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - Request Received - - - - - - Input Valid? - - - - - - - REJECT: Invalid - Input (~1μs) - - - - - - - - System Init? - - - - - - - REJECT: Not - Initialized - - - - - - - - Auth Header? - - - - - - - Skip Nostr - Validation - - - - - - - - Parse Header - - - - - - - Valid Base64? - - - - - - - REJECT: Malformed - Header (~10μs) - - - - - - - - Valid JSON? - - - - - - - REJECT: Invalid - JSON (~50μs) - - - - - - - Valid Struct? - - - - - - - REJECT: Invalid - Structure (~100μs) - - - - - - - - Event Kind? - - - - - - - - - - - - - - DUAL AUTH MODES - - - - - - - - - Kind 22242 - (NIP-42) - - - - - - - - Kind 24242 - (Blossom) - - - - - - - - Other Kinds - (Skip) - - - - - - - - Invalid Kind - (Reject) - - - - - - - - REJECT: Invalid - Event Kind - - - - - - - - NIP-42 Challenge - Validate (~500μs) - - - - - - - - Skip Nostr - Validate - - - - - - - - Extract Context - - - - - - - - ECDSA SIGNATURE VERIFICATION (~2ms) - - - - - - - - - - Operation Match? - (Kind 24242) - - - - - - - - REJECT: Operation - Mismatch - - - - - - - - Expired Event? - (Check timestamp) - - - - - - - - REJECT: Event Expired - - - - - - - - Extract Pubkey - - - - - - - - Extract Auth Context - - - - - - - - Auth Rules Enabled? - - - - - - - - ACL Evaluation - (If Auth Disabled) - - - - - - - - Auth Mode Selection - (NIP-98 / ZK / Anonymous) - - - - - - - - NIP-98 Validation - - - - - - - - ZK Auth Proof Check - - - - - - - - Anonymous Auth - - - - - - - - ACL Evaluation - (If Auth Passed) - - - - - - - - REJECT: ACL Denied - - - - - - - - Rate Limit Check - - - - - - - - REJECT: Rate Limited - - - - - - - - Store Event in DB - (Index by ID, Author, Kind…) - - - - - - - - ACK + Stored Successfully - - - \ No newline at end of file diff --git a/logs/access.log b/logs/access.log deleted file mode 100755 index 9676cd4..0000000 --- a/logs/access.log +++ /dev/null @@ -1,59 +0,0 @@ -127.0.0.1 - - [07/Sep/2025:19:51:23 -0400] "GET / HTTP/1.1" 200 101 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:23 -0400] "PUT /upload HTTP/1.1" 401 168 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:24 -0400] "PUT /upload HTTP/1.1" 401 168 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:24 -0400] "PUT /upload HTTP/1.1" 401 149 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:24 -0400] "PUT /upload HTTP/1.1" 401 168 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:24 -0400] "PUT /upload HTTP/1.1" 200 510 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:24 -0400] "PUT /upload HTTP/1.1" 401 180 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:24 -0400] "PUT /upload HTTP/1.1" 401 141 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:24 -0400] "PUT /upload HTTP/1.1" 401 141 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:24 -0400] "PUT /upload HTTP/1.1" 401 134 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:24 -0400] "PUT /upload HTTP/1.1" 401 134 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:25 -0400] "PUT /upload HTTP/1.1" 401 134 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:25 -0400] "PUT /upload HTTP/1.1" 401 134 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:25 -0400] "PUT /upload HTTP/1.1" 401 146 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:25 -0400] "PUT /upload HTTP/1.1" 401 152 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:25 -0400] "PUT /upload HTTP/1.1" 401 152 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:26 -0400] "PUT /upload HTTP/1.1" 401 152 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:26 -0400] "PUT /upload HTTP/1.1" 401 152 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:26 -0400] "PUT /upload HTTP/1.1" 401 134 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:27 -0400] "GET /auth HTTP/1.1" 200 144 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:27 -0400] "GET /auth HTTP/1.1" 200 144 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:27 -0400] "PUT /upload HTTP/1.1" 401 162 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:19:51:54 -0400] "PUT /upload HTTP/1.1" 401 134 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:20:02:16 -0400] "PUT /upload HTTP/1.1" 401 134 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:20:05:20 -0400] "GET / HTTP/1.1" 200 101 "-" "curl/8.15.0" -127.0.0.1 - - [07/Sep/2025:20:05:20 -0400] "PUT /upload HTTP/1.1" 401 168 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:46:38 -0400] "PUT /report HTTP/1.1" 400 159 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:07 -0400] "PUT /report HTTP/1.1" 200 93 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:07 -0400] "PUT /report HTTP/1.1" 200 93 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:07 -0400] "PUT /report HTTP/1.1" 200 92 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:08 -0400] "PUT /report HTTP/1.1" 200 93 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:08 -0400] "PUT /report HTTP/1.1" 200 92 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:08 -0400] "PUT /report HTTP/1.1" 200 93 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:08 -0400] "PUT /report HTTP/1.1" 200 93 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:09 -0400] "PUT /report HTTP/1.1" 200 93 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:09 -0400] "PUT /report HTTP/1.1" 200 92 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:09 -0400] "PUT /report HTTP/1.1" 200 93 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:09 -0400] "PUT /report HTTP/1.1" 400 162 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:10 -0400] "PUT /report HTTP/1.1" 400 164 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:10 -0400] "PUT /report HTTP/1.1" 400 162 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:10 -0400] "PUT /report HTTP/1.1" 400 125 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:10 -0400] "GET /report HTTP/1.1" 405 166 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:10 -0400] "POST /report HTTP/1.1" 405 166 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:10 -0400] "DELETE /report HTTP/1.1" 405 166 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:10 -0400] "PUT /report HTTP/1.1" 400 152 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:10 -0400] "PUT /report HTTP/1.1" 200 93 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:11 -0400] "PUT /report HTTP/1.1" 415 150 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:11 -0400] "PUT /report HTTP/1.1" 200 93 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:48:11 -0400] "PUT /report HTTP/1.1" 200 92 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:55:35 -0400] "PUT /upload HTTP/1.1" 401 180 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:55:35 -0400] "PUT /upload HTTP/1.1" 401 180 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:55:35 -0400] "PUT /upload HTTP/1.1" 401 180 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:07:55:35 -0400] "PUT /mirror HTTP/1.1" 200 535 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:09:28:45 -0400] "PUT /upload HTTP/1.1" 401 180 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:09:29:22 -0400] "PUT /upload HTTP/1.1" 401 180 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:09:30:09 -0400] "PUT /upload HTTP/1.1" 200 510 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:09:31:44 -0400] "HEAD /upload HTTP/1.1" 200 0 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:09:32:53 -0400] "PUT /upload HTTP/1.1" 200 512 "-" "curl/8.15.0" -127.0.0.1 - - [08/Sep/2025:09:33:10 -0400] "HEAD /upload HTTP/1.1" 200 0 "-" "curl/8.15.0" diff --git a/logs/error.log b/logs/error.log deleted file mode 100644 index 14ddee1..0000000 --- a/logs/error.log +++ /dev/null @@ -1,18541 +0,0 @@ -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:23 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 accept: 127.0.0.1:58170 fd:6 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 event timer add: 6: 60000:542843833 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 reusable connection: 1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:23 [debug] 1414245#1414245: timer delta: 87003 -2025/09/07 19:51:23 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http wait request handler -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 malloc: 00005719592400A0:1024 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 recv: eof:0, avail:-1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 recv: fd:6 78 of 1024 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 reusable connection: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http process request line -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http request line: "GET / HTTP/1.1" -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http uri: "/" -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http args: "" -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http exten: "" -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http process request header line -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http header: "Host: localhost:9001" -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http header: "Accept: */*" -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http header done -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 event timer del: 6: 542843833 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 generic phase: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 rewrite phase: 1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 test location: "/health" -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 test location: "/auth" -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 test location: "/api/" -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 test location: "/" -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 using configuration "=/" -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http cl:-1 max:104857600 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 rewrite phase: 3 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http set discard body -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:23 GMT -Content-Type: application/octet-stream -Content-Length: 101 -Connection: keep-alive -Content-Type: text/plain - -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 write new buf t:1 f:0 0000571959255C70, pos 0000571959255C70, size: 198 file: 0, size: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http write filter: l:0 f:0 s:198 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http output filter "/?" -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http copy filter: "/?" -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http postpone filter "/?" 00007FFE2F6E7FD0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 write old buf t:1 f:0 0000571959255C70, pos 0000571959255C70, size: 198 file: 0, size: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 write new buf t:0 f:0 0000000000000000, pos 000057195929A750, size: 101 file: 0, size: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http write filter: l:1 f:0 s:299 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http write filter limit 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 writev: 299 of 299 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http write filter 0000000000000000 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http copy filter: 0 "/?" -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http finalize request: 0, "/?" a:1, c:1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 set http keepalive handler -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http close request -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http log handler -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 free: 000057195925F520, unused: 8 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 free: 0000571959255890, unused: 2632 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 free: 00005719592400A0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 hc free: 0000000000000000 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 hc busy: 0000000000000000 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 tcp_nodelay -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 reusable connection: 1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 event timer add: 6: 65000:542848833 -2025/09/07 19:51:23 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll: fd:6 ev:2001 d:0000741FB4FC51E0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 http keepalive handler -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 malloc: 00005719592400A0:1024 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 recv: eof:1, avail:-1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 recv: fd:6 0 of 1024 -2025/09/07 19:51:23 [info] 1414245#1414245: *32 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 close http connection: 6 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 event timer del: 6: 542848833 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 reusable connection: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 free: 00005719592400A0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *32 free: 000057195923D840, unused: 136 -2025/09/07 19:51:23 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:23 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 accept: 127.0.0.1:58176 fd:6 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 event timer add: 6: 60000:542844110 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 reusable connection: 1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:23 [debug] 1414245#1414245: timer delta: 277 -2025/09/07 19:51:23 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http wait request handler -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 malloc: 00005719592400A0:1024 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 recv: eof:0, avail:-1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 recv: fd:6 799 of 1024 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 reusable connection: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http process request line -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http uri: "/upload" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http args: "" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http exten: "" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http process request header line -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http header: "Host: localhost:9001" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http header: "Accept: */*" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http header: "Authorization: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiIwZTU5YTc1ODM2OGZlNDlhNjM2MmNmZjFjMmYxMzc1YWQ3ZWVkY2Q3ZjNmMDcwN2IyMDQwNGZmMmVkYmRhMWRlIiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODMsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbImV4cGlyYXRpb24iLCIxNzU3MjkyNjgzIl0sWyJ4IiwiODAyMDU4MzY0ODczOTEwZGM2ZTg2MTFjMjIzMjI0MjQ4NDIxMWExODcyNGMxMjkyNDg2YjEwNzkzOWRlNzI5OCJdXSwiY29udGVudCI6IiIsInNpZyI6IjQ2NDhhN2E0NzNjNTY5NzViZWY1MGU2NzYxZDNiM2RiZDM1MDJlYjJiZTg0YzVkNzEwMzNlNWI3YjcxNWZiZGFmNGY5NWYyYzU1MzgzODU3OWFmNmM2YzgyNDZhYzcxODM5YzRhNDJkZjY3MmI3Yzk2MjQzNDYyOTRkN2I1MGViIn0K" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http header: "Content-Type: text/plain" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http header: "Content-Length: 30" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http header done -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 event timer del: 6: 542844110 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 generic phase: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 rewrite phase: 1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 test location: "/health" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 test location: "/report" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 test location: "/upload" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 using configuration "=/upload" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http cl:30 max:104857600 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 rewrite phase: 3 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "PUT" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:23 [notice] 1414245#1414245: *33 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script if -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script if: false -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 post rewrite phase: 4 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 generic phase: 5 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 generic phase: 6 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 generic phase: 7 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 access phase: 8 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 access phase: 9 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 access phase: 10 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 post access phase: 11 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 generic phase: 12 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 generic phase: 13 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http client request body preread 30 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http request body content length filter -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http body new buf t:1 f:0 00005719592403A1, pos 00005719592403A1, size: 30 file: 0, size: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http init upstream, client timer: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "QUERY_STRING" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "PUT" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "text/plain" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "30" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "CONTENT_LENGTH: 30" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "/upload" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "REQUEST_URI" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "/upload" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "/upload" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "./blobs" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "HTTP/1.1" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "http" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "CGI/1.1" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "nginx/" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "1.18.0" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "127.0.0.1" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "REMOTE_PORT" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "58176" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "REMOTE_PORT: 58176" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "SERVER_ADDR" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "127.0.0.1" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "SERVER_PORT" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "9001" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "SERVER_NAME" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "localhost" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "200" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script var: "./blobs" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiIwZTU5YTc1ODM2OGZlNDlhNjM2MmNmZjFjMmYxMzc1YWQ3ZWVkY2Q3ZjNmMDcwN2IyMDQwNGZmMmVkYmRhMWRlIiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODMsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbImV4cGlyYXRpb24iLCIxNzU3MjkyNjgzIl0sWyJ4IiwiODAyMDU4MzY0ODczOTEwZGM2ZTg2MTFjMjIzMjI0MjQ4NDIxMWExODcyNGMxMjkyNDg2YjEwNzkzOWRlNzI5OCJdXSwiY29udGVudCI6IiIsInNpZyI6IjQ2NDhhN2E0NzNjNTY5NzViZWY1MGU2NzYxZDNiM2RiZDM1MDJlYjJiZTg0YzVkNzEwMzNlNWI3YjcxNWZiZGFmNGY5NWYyYzU1MzgzODU3OWFmNmM2YzgyNDZhYzcxODM5YzRhNDJkZjY3MmI3Yzk2MjQzNDYyOTRkN2I1MGViIn0K" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 fastcgi param: "HTTP_CONTENT_LENGTH: 30" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 posix_memalign: 0000571959247160:4096 @16 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http cleanup add: 0000571959247240 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 get rr peer, try: 1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 stream socket 10 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #34 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 connected -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http upstream connect: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http upstream send request -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http upstream send request body -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 chain writer buf fl:0 s:1224 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 chain writer buf fl:0 s:30 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 chain writer buf fl:0 s:10 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 chain writer in: 00005719592472B0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 writev: 1264 of 1264 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 chain writer out: 0000000000000000 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 event timer add: 10: 60000:542844110 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http request count:2 blk:0 -2025/09/07 19:51:23 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http run request: "/upload?" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C9 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http upstream request: "/upload?" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http upstream dummy handler -2025/09/07 19:51:23 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:23 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C9 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http upstream request: "/upload?" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http upstream process header -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 malloc: 0000571959248170:4096 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 recv: eof:0, avail:-1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 recv: fd:10 152 of 4096 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 01 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 07 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 01 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 8E -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 02 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record length: 142 -2025/09/07 19:51:23 [error] 1414245#1414245: *33 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:23] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:23] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 recv: eof:0, avail:0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http upstream request: "/upload?" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http upstream dummy handler -2025/09/07 19:51:23 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C9 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http upstream request: "/upload?" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http upstream process header -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 recv: eof:1, avail:-1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 recv: fd:10 728 of 3944 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 01 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 07 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 01 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 01 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: C2 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 06 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record length: 450 -2025/09/07 19:51:23 [error] 1414245#1414245: *33 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) -AUTH: pubkey extracted: 'S' -AUTH: resource_hash: '802058364873910dc6e8611c2232242484211a18724c1292486b107939de7298' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:23] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 01 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 07 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 01 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record length: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 01 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 06 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 01 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: D9 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 07 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record length: 217 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi parser: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi parser: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi parser: 1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi header done -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:23 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 write new buf t:1 f:0 0000571959247578, pos 0000571959247578, size: 181 file: 0, size: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http cacheable: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http upstream process upstream -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 pipe read upstream: 1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 pipe preread: 188 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 readv: eof:1, avail:0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 readv: 1, last:3216 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 pipe recv chain: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 pipe buf free s:0 t:1 f:0 0000571959248170, pos 0000571959248424, size: 188 file: 0, size: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 pipe length: -1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 input buf #0 0000571959248424 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 01 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 06 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 01 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record length: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi closed stdout -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 01 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 03 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 01 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 08 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record byte: 00 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi record length: 8 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http fastcgi sent end request -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 input buf 0000571959248424 157 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 pipe write downstream: 1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 pipe write downstream flush in -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http output filter "/upload?" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http copy filter: "/upload?" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http postpone filter "/upload?" 0000571959247280 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http chunk: 157 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 write old buf t:1 f:0 0000571959247578, pos 0000571959247578, size: 181 file: 0, size: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 write new buf t:1 f:0 0000571959247870, pos 0000571959247870, size: 4 file: 0, size: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 write new buf t:1 f:0 0000571959248170, pos 0000571959248424, size: 157 file: 0, size: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http write filter: l:0 f:0 s:344 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http copy filter: 0 "/upload?" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 pipe write downstream done -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 event timer: 10, old: 542844110, new: 542844114 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http upstream exit: 0000000000000000 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 finalize http upstream request: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 finalize http fastcgi request -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 free rr peer 1 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 close http upstream connection: 10 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 event timer del: 10: 542844110 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 reusable connection: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http upstream temp fd: -1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http output filter "/upload?" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http copy filter: "/upload?" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http chunk: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 write old buf t:1 f:0 0000571959247578, pos 0000571959247578, size: 181 file: 0, size: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 write old buf t:1 f:0 0000571959247870, pos 0000571959247870, size: 4 file: 0, size: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 write old buf t:1 f:0 0000571959248170, pos 0000571959248424, size: 157 file: 0, size: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http write filter: l:1 f:0 s:349 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http write filter limit 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 writev: 349 of 349 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http write filter 0000000000000000 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http copy filter: 0 "/upload?" -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 set http keepalive handler -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http close request -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http log handler -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 free: 0000571959248170 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 free: 000057195925F520, unused: 3 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 free: 0000571959255890, unused: 8 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 free: 0000571959247160, unused: 1818 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 free: 00005719592400A0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 hc free: 0000000000000000 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 hc busy: 0000000000000000 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 tcp_nodelay -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 reusable connection: 1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 event timer add: 6: 65000:542849114 -2025/09/07 19:51:23 [debug] 1414245#1414245: timer delta: 3 -2025/09/07 19:51:23 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 http keepalive handler -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 malloc: 00005719592400A0:1024 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 recv: eof:1, avail:-1 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 recv: fd:6 0 of 1024 -2025/09/07 19:51:23 [info] 1414245#1414245: *33 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 close http connection: 6 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 event timer del: 6: 542849114 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 reusable connection: 0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 free: 00005719592400A0 -2025/09/07 19:51:23 [debug] 1414245#1414245: *33 free: 000057195923D840, unused: 120 -2025/09/07 19:51:23 [debug] 1414245#1414245: timer delta: 2 -2025/09/07 19:51:23 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:23 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:24 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 accept: 127.0.0.1:58180 fd:6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 event timer add: 6: 60000:542844379 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 263 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http wait request handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 recv: fd:6 799 of 1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http process request line -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http uri: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http args: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http exten: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http process request header line -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http header: "Host: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http header: "Accept: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http header: "Authorization: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiJjY2ZjZDc5MjBmYWFjNDYyZjYxMjc1OTA4MTBmZWMzMGZhY2FhOWYyNzU3ZTE2ZDc0ODI0ODIyNjc2OWY5YzcxIiwicHVia2V5IjoiMDM5NmI0MjYwOTAyODRhMjgyOTQwNzhkY2U1M2ZlNzM3OTFhYjYyM2MzZmM0NmFiNDQwOWZlYTA1MTA5YTZkYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODQsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbImV4cGlyYXRpb24iLCIxNzU3MjkyNjgzIl0sWyJ4IiwiMzY4YTNmYWQxMjJiZTQ5NDcxZWIxOGI4N2RiYjYxZmU2NWRkNzEwNDhhY2VkOTcxMmMyMjk5YWJjNjM5MGFjYSJdXSwiY29udGVudCI6IiIsInNpZyI6Ijc0ZDc1YzBmNjE1ZmU2NGE5ZTAyOGYyM2E0YWVhN2E0MTM3MGE5NmNiZWM1Mzc2NzM0Mjk3NGY0YWU5OGNlNjlmMjI2NjQyM2JkYjc5N2VlN2IzMmE3YWE0NTRlMWQ3MGU2ZDRkOWI3OGQyZmFmMWU0NGYyZjFlNTc1YWQ5NWM4In0K" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http header: "Content-Type: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http header: "Content-Length: 30" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 event timer del: 6: 542844379 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 generic phase: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 rewrite phase: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 test location: "/health" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 test location: "/report" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 test location: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 using configuration "=/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http cl:30 max:104857600 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 rewrite phase: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:24 [notice] 1414245#1414245: *35 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script if -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script if: false -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 post rewrite phase: 4 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 generic phase: 5 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 generic phase: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 generic phase: 7 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 access phase: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 access phase: 9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 access phase: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 post access phase: 11 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 generic phase: 12 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 generic phase: 13 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http client request body preread 30 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http request body content length filter -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http body new buf t:1 f:0 00005719592403A1, pos 00005719592403A1, size: 30 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http init upstream, client timer: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "QUERY_STRING" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "30" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "CONTENT_LENGTH: 30" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "REQUEST_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "nginx/" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "REMOTE_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "58180" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "REMOTE_PORT: 58180" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "SERVER_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "SERVER_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "SERVER_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiJjY2ZjZDc5MjBmYWFjNDYyZjYxMjc1OTA4MTBmZWMzMGZhY2FhOWYyNzU3ZTE2ZDc0ODI0ODIyNjc2OWY5YzcxIiwicHVia2V5IjoiMDM5NmI0MjYwOTAyODRhMjgyOTQwNzhkY2U1M2ZlNzM3OTFhYjYyM2MzZmM0NmFiNDQwOWZlYTA1MTA5YTZkYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODQsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbImV4cGlyYXRpb24iLCIxNzU3MjkyNjgzIl0sWyJ4IiwiMzY4YTNmYWQxMjJiZTQ5NDcxZWIxOGI4N2RiYjYxZmU2NWRkNzEwNDhhY2VkOTcxMmMyMjk5YWJjNjM5MGFjYSJdXSwiY29udGVudCI6IiIsInNpZyI6Ijc0ZDc1YzBmNjE1ZmU2NGE5ZTAyOGYyM2E0YWVhN2E0MTM3MGE5NmNiZWM1Mzc2NzM0Mjk3NGY0YWU5OGNlNjlmMjI2NjQyM2JkYjc5N2VlN2IzMmE3YWE0NTRlMWQ3MGU2ZDRkOWI3OGQyZmFmMWU0NGYyZjFlNTc1YWQ5NWM4In0K" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 fastcgi param: "HTTP_CONTENT_LENGTH: 30" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 posix_memalign: 0000571959247160:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http cleanup add: 0000571959247240 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 get rr peer, try: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 stream socket 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #36 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 connected -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http upstream connect: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http upstream send request -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http upstream send request body -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 chain writer buf fl:0 s:1224 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 chain writer buf fl:0 s:30 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 chain writer buf fl:0 s:10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 chain writer in: 00005719592472B0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 writev: 1264 of 1264 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 chain writer out: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 event timer add: 10: 60000:542844379 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http request count:2 blk:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http run request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 malloc: 0000571959248170:4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 recv: fd:10 152 of 4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 8E -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 02 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record length: 142 -2025/09/07 19:51:24 [error] 1414245#1414245: *35 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:24] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 recv: eof:0, avail:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59998 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 recv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 recv: fd:10 720 of 3944 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: BC -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 04 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record length: 444 -2025/09/07 19:51:24 [error] 1414245#1414245: *35 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) -AUTH: pubkey extracted: '' -AUTH: resource_hash: '368a3fad122be49471eb18b87dbb61fe65dd71048aced9712c2299abc6390aca' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: D9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record length: 217 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi parser: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:24 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 write new buf t:1 f:0 0000571959247578, pos 0000571959247578, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http cacheable: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http upstream process upstream -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 pipe read upstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 pipe preread: 188 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 readv: eof:1, avail:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 readv: 1, last:3224 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 pipe recv chain: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 pipe buf free s:0 t:1 f:0 0000571959248170, pos 000057195924841C, size: 188 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 pipe length: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 input buf #0 000057195924841C -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi closed stdout -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 03 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 08 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi record length: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http fastcgi sent end request -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 input buf 000057195924841C 157 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 pipe write downstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 pipe write downstream flush in -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http postpone filter "/upload?" 0000571959247280 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http chunk: 157 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 write old buf t:1 f:0 0000571959247578, pos 0000571959247578, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 write new buf t:1 f:0 0000571959247870, pos 0000571959247870, size: 4 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 write new buf t:1 f:0 0000571959248170, pos 000057195924841C, size: 157 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http write filter: l:0 f:0 s:344 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 pipe write downstream done -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 event timer: 10, old: 542844379, new: 542844384 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http upstream exit: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 finalize http upstream request: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 finalize http fastcgi request -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 free rr peer 1 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 close http upstream connection: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 event timer del: 10: 542844379 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http upstream temp fd: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http chunk: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 write old buf t:1 f:0 0000571959247578, pos 0000571959247578, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 write old buf t:1 f:0 0000571959247870, pos 0000571959247870, size: 4 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 write old buf t:1 f:0 0000571959248170, pos 000057195924841C, size: 157 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http write filter: l:1 f:0 s:349 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http write filter limit 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 writev: 349 of 349 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http write filter 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 set http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http close request -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http log handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 free: 0000571959248170 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 free: 000057195925F520, unused: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 free: 0000571959255890, unused: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 free: 0000571959247160, unused: 1818 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 hc free: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 hc busy: 0000000000000000 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 tcp_nodelay -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 event timer add: 6: 65000:542849384 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 recv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 recv: fd:6 0 of 1024 -2025/09/07 19:51:24 [info] 1414245#1414245: *35 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 close http connection: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 event timer del: 6: 542849384 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *35 free: 000057195923D840, unused: 120 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:24 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 accept: 127.0.0.1:58190 fd:6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 event timer add: 6: 60000:542844691 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 306 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http wait request handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 recv: fd:6 801 of 1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http process request line -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http uri: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http args: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http exten: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http process request header line -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http header: "Host: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http header: "Accept: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http header: "Authorization: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiJlMGM5Y2NjOGY2ZTFiNzVlZGQ5NTY4ZGUyNjI3YmNiYmRiM2U2YTJkZmE1ZjQ2MWRiNzU3MjFhOGNhNDc0NDI2IiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODQsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbImV4cGlyYXRpb24iLCIxNzU3MjkyNjg0Il0sWyJ4IiwiNWE1NjI4OTM4YWE1ZmM2N2I3OWY1Yzg0M2M4MTNiZjc4MjNmNDMwNzkzNWI2ZWIzNzJmMTI1MGMxY2NkNDQ3ZCJdXSwiY29udGVudCI6IiIsInNpZyI6IjhhOWE2ODllMjFjYTRjZmU1MjczNDU5ZTI2ZDQ5ODkwYzQ2MWU3ZThiNGQ2ZTM3NjRkNzE4OWVhZTc1ZmMzNzc4ZTFhMjVjNTFkZTcwMDJlZTJhMWQ3ODcwZDdiOGVmNmQ1ZjlmOWM1Y2IwMzI0ZGEzYTE4YzFiMjYzYTQ2OTYzIn0K" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http header: "Content-Type: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http header: "Content-Length: 32" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 event timer del: 6: 542844691 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 generic phase: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 rewrite phase: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 test location: "/health" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 test location: "/report" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 test location: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 using configuration "=/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http cl:32 max:104857600 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 rewrite phase: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:24 [notice] 1414245#1414245: *37 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script if -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script if: false -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 post rewrite phase: 4 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 generic phase: 5 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 generic phase: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 generic phase: 7 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 access phase: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 access phase: 9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 access phase: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 post access phase: 11 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 generic phase: 12 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 generic phase: 13 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http client request body preread 32 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http request body content length filter -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http body new buf t:1 f:0 00005719592403A1, pos 00005719592403A1, size: 32 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http init upstream, client timer: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "QUERY_STRING" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "32" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "CONTENT_LENGTH: 32" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "REQUEST_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "nginx/" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "REMOTE_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "58190" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "REMOTE_PORT: 58190" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "SERVER_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "SERVER_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "SERVER_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiJlMGM5Y2NjOGY2ZTFiNzVlZGQ5NTY4ZGUyNjI3YmNiYmRiM2U2YTJkZmE1ZjQ2MWRiNzU3MjFhOGNhNDc0NDI2IiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODQsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbImV4cGlyYXRpb24iLCIxNzU3MjkyNjg0Il0sWyJ4IiwiNWE1NjI4OTM4YWE1ZmM2N2I3OWY1Yzg0M2M4MTNiZjc4MjNmNDMwNzkzNWI2ZWIzNzJmMTI1MGMxY2NkNDQ3ZCJdXSwiY29udGVudCI6IiIsInNpZyI6IjhhOWE2ODllMjFjYTRjZmU1MjczNDU5ZTI2ZDQ5ODkwYzQ2MWU3ZThiNGQ2ZTM3NjRkNzE4OWVhZTc1ZmMzNzc4ZTFhMjVjNTFkZTcwMDJlZTJhMWQ3ODcwZDdiOGVmNmQ1ZjlmOWM1Y2IwMzI0ZGEzYTE4YzFiMjYzYTQ2OTYzIn0K" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 fastcgi param: "HTTP_CONTENT_LENGTH: 32" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 posix_memalign: 0000571959247160:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http cleanup add: 0000571959247240 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 get rr peer, try: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 stream socket 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #38 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 connected -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http upstream connect: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http upstream send request -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http upstream send request body -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 chain writer buf fl:0 s:1224 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 chain writer buf fl:0 s:32 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 chain writer buf fl:0 s:8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 chain writer in: 00005719592472A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 writev: 1264 of 1264 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 chain writer out: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 event timer add: 10: 60000:542844691 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http request count:2 blk:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http run request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 malloc: 0000571959248170:4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 recv: fd:10 152 of 4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 8E -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 02 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record length: 142 -2025/09/07 19:51:24 [error] 1414245#1414245: *37 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:24] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 recv: eof:0, avail:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 recv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 recv: fd:10 696 of 3944 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: BA -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record length: 442 -2025/09/07 19:51:24 [error] 1414245#1414245: *37 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied by hash blacklist rule: TEST_HASH_BLACKLIST -AUTH: pubkey extracted: 'S' -AUTH: resource_hash: '5a5628938aa5fc67b79f5c843c813bf7823f4307935b6eb372f1250c1ccd447d' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: C6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 02 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record length: 198 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi parser: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:24 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 write new buf t:1 f:0 0000571959247568, pos 0000571959247568, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http cacheable: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http upstream process upstream -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 pipe read upstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 pipe preread: 164 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 readv: eof:1, avail:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 readv: 1, last:3248 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 pipe recv chain: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 pipe buf free s:0 t:1 f:0 0000571959248170, pos 000057195924841C, size: 164 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 pipe length: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 input buf #0 000057195924841C -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi closed stdout -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 03 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 08 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi record length: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http fastcgi sent end request -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 input buf 000057195924841C 138 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 pipe write downstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 pipe write downstream flush in -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http postpone filter "/upload?" 0000571959256880 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http chunk: 138 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 write old buf t:1 f:0 0000571959247568, pos 0000571959247568, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 write new buf t:1 f:0 0000571959247860, pos 0000571959247860, size: 4 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 write new buf t:1 f:0 0000571959248170, pos 000057195924841C, size: 138 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http write filter: l:0 f:0 s:325 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 pipe write downstream done -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 event timer: 10, old: 542844691, new: 542844695 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http upstream exit: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 finalize http upstream request: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 finalize http fastcgi request -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 free rr peer 1 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 close http upstream connection: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 event timer del: 10: 542844691 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http upstream temp fd: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http chunk: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 write old buf t:1 f:0 0000571959247568, pos 0000571959247568, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 write old buf t:1 f:0 0000571959247860, pos 0000571959247860, size: 4 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 write old buf t:1 f:0 0000571959248170, pos 000057195924841C, size: 138 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http write filter: l:1 f:0 s:330 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http write filter limit 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 writev: 330 of 330 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http write filter 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 set http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http close request -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http log handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 free: 0000571959248170 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 free: 000057195925F520, unused: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 free: 0000571959255890, unused: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 free: 0000571959247160, unused: 1834 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 hc free: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 hc busy: 0000000000000000 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 tcp_nodelay -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 event timer add: 6: 65000:542849695 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 recv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 recv: fd:6 0 of 1024 -2025/09/07 19:51:24 [info] 1414245#1414245: *37 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 close http connection: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 event timer del: 6: 542849695 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *37 free: 000057195923D840, unused: 120 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:24 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 accept: 127.0.0.1:58194 fd:6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 event timer add: 6: 60000:542844962 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 266 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http wait request handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 recv: fd:6 794 of 1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http process request line -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http uri: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http args: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http exten: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http process request header line -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http header: "Host: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http header: "Accept: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http header: "Authorization: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiI4ODlhY2RhMzczZTljNmNlZWU3ZmUxYWEwNWJkY2U5NjYwNjRlY2I5ZjUxOWQwYTBiZjRmNjk5OWM2NGYyZWVjIiwicHVia2V5IjoiNzY5YTc0MDM4NjIxMWM3NmY4MWJiMjM1ZGU1MGE1ZTZmYTQ2M2NiNGZhZTI1ZTYyNjI1NjA3ZmMyY2ZjMGYyOCIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODQsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbImV4cGlyYXRpb24iLCIxNzU3MjkyNjg0Il0sWyJ4IiwiOTJlNjJmOTcwOGNlZjdkN2Y0Njc1MjUwMjY3YTM1MTgyMzAwZGY2ZTFjNWI2Y2YwYmQyMDc5MTJkOTRjOTAxNiJdXSwiY29udGVudCI6IiIsInNpZyI6IjNlMTJlNDI5NmExOWFlYThjNWVlYzAyNGIyMTQzNmQxYTk4Nzk1ZmQ2ZDVjMzlmNTMzYjE4ZWY2NGM2NmM3MjJkNDFjYWQyNDc3ZjZlZDBiM2Y1MzI2Mjg0ZTYxZDZiMjkxOWQwMmIzZjJlM2I3YWY3NTEwNjQwYjQyZGJlOTk0In0K" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http header: "Content-Type: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http header: "Content-Length: 25" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 event timer del: 6: 542844962 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 generic phase: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 rewrite phase: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 test location: "/health" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 test location: "/report" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 test location: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 using configuration "=/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http cl:25 max:104857600 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 rewrite phase: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:24 [notice] 1414245#1414245: *39 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script if -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script if: false -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 post rewrite phase: 4 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 generic phase: 5 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 generic phase: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 generic phase: 7 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 access phase: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 access phase: 9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 access phase: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 post access phase: 11 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 generic phase: 12 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 generic phase: 13 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http client request body preread 25 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http request body content length filter -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http body new buf t:1 f:0 00005719592403A1, pos 00005719592403A1, size: 25 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http init upstream, client timer: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "QUERY_STRING" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "25" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "CONTENT_LENGTH: 25" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "REQUEST_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "nginx/" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "REMOTE_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "58194" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "REMOTE_PORT: 58194" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "SERVER_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "SERVER_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "SERVER_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiI4ODlhY2RhMzczZTljNmNlZWU3ZmUxYWEwNWJkY2U5NjYwNjRlY2I5ZjUxOWQwYTBiZjRmNjk5OWM2NGYyZWVjIiwicHVia2V5IjoiNzY5YTc0MDM4NjIxMWM3NmY4MWJiMjM1ZGU1MGE1ZTZmYTQ2M2NiNGZhZTI1ZTYyNjI1NjA3ZmMyY2ZjMGYyOCIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODQsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbImV4cGlyYXRpb24iLCIxNzU3MjkyNjg0Il0sWyJ4IiwiOTJlNjJmOTcwOGNlZjdkN2Y0Njc1MjUwMjY3YTM1MTgyMzAwZGY2ZTFjNWI2Y2YwYmQyMDc5MTJkOTRjOTAxNiJdXSwiY29udGVudCI6IiIsInNpZyI6IjNlMTJlNDI5NmExOWFlYThjNWVlYzAyNGIyMTQzNmQxYTk4Nzk1ZmQ2ZDVjMzlmNTMzYjE4ZWY2NGM2NmM3MjJkNDFjYWQyNDc3ZjZlZDBiM2Y1MzI2Mjg0ZTYxZDZiMjkxOWQwMmIzZjJlM2I3YWY3NTEwNjQwYjQyZGJlOTk0In0K" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 fastcgi param: "HTTP_CONTENT_LENGTH: 25" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 posix_memalign: 0000571959247160:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http cleanup add: 0000571959247240 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 get rr peer, try: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 stream socket 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #40 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 connected -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http upstream connect: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http upstream send request -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http upstream send request body -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 chain writer buf fl:0 s:1224 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 chain writer buf fl:0 s:25 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 chain writer buf fl:0 s:15 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 chain writer in: 00005719592472B0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 writev: 1264 of 1264 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 chain writer out: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 event timer add: 10: 60000:542844962 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http request count:2 blk:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http run request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 malloc: 0000571959248170:4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 recv: fd:10 152 of 4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 8E -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 02 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record length: 142 -2025/09/07 19:51:24 [error] 1414245#1414245: *39 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:24] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 recv: eof:0, avail:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 recv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 recv: fd:10 720 of 3944 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: BC -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 04 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record length: 444 -2025/09/07 19:51:24 [error] 1414245#1414245: *39 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: Denied - pubkey not in whitelist (found 1 whitelist rules) -AUTH: pubkey extracted: '' -AUTH: resource_hash: '92e62f9708cef7d7f4675250267a35182300df6e1c5b6cf0bd207912d94c9016' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: D9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record length: 217 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi parser: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:24 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 write new buf t:1 f:0 0000571959247578, pos 0000571959247578, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http cacheable: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http upstream process upstream -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 pipe read upstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 pipe preread: 188 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 readv: eof:1, avail:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 readv: 1, last:3224 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 pipe recv chain: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 pipe buf free s:0 t:1 f:0 0000571959248170, pos 000057195924841C, size: 188 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 pipe length: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 input buf #0 000057195924841C -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi closed stdout -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 03 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 08 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi record length: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http fastcgi sent end request -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 input buf 000057195924841C 157 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 pipe write downstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 pipe write downstream flush in -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http postpone filter "/upload?" 0000571959247280 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http chunk: 157 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 write old buf t:1 f:0 0000571959247578, pos 0000571959247578, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 write new buf t:1 f:0 0000571959247870, pos 0000571959247870, size: 4 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 write new buf t:1 f:0 0000571959248170, pos 000057195924841C, size: 157 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http write filter: l:0 f:0 s:344 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 pipe write downstream done -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 event timer: 10, old: 542844962, new: 542844967 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http upstream exit: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 finalize http upstream request: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 finalize http fastcgi request -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 free rr peer 1 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 close http upstream connection: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 event timer del: 10: 542844962 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http upstream temp fd: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http chunk: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 write old buf t:1 f:0 0000571959247578, pos 0000571959247578, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 write old buf t:1 f:0 0000571959247870, pos 0000571959247870, size: 4 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 write old buf t:1 f:0 0000571959248170, pos 000057195924841C, size: 157 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http write filter: l:1 f:0 s:349 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http write filter limit 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 writev: 349 of 349 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http write filter 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 set http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http close request -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http log handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 free: 0000571959248170 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 free: 000057195925F520, unused: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 free: 0000571959255890, unused: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 free: 0000571959247160, unused: 1818 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 hc free: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 hc busy: 0000000000000000 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 tcp_nodelay -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 event timer add: 6: 65000:542849967 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 4 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 recv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 recv: fd:6 0 of 1024 -2025/09/07 19:51:24 [info] 1414245#1414245: *39 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 close http connection: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 event timer del: 6: 542849967 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *39 free: 000057195923D840, unused: 120 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:24 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 accept: 127.0.0.1:58206 fd:6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 event timer add: 6: 60000:542845223 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 255 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http wait request handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 recv: fd:6 795 of 1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http process request line -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http uri: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http args: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http exten: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http process request header line -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http header: "Host: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http header: "Accept: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http header: "Authorization: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiJhMzM5MWRiMmY0MDk4M2YzMTZjNWRiNWM0MTQzOWE3YThjYWE0NDQxZjUzNzU3MmY1OWI2NWJkZWU3ZDkzNWMyIiwicHVia2V5IjoiMDM5NmI0MjYwOTAyODRhMjgyOTQwNzhkY2U1M2ZlNzM3OTFhYjYyM2MzZmM0NmFiNDQwOWZlYTA1MTA5YTZkYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODQsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbImV4cGlyYXRpb24iLCIxNzU3MjkyNjg0Il0sWyJ4IiwiMGYwYWQ2OTRlZmIyMzdhY2EwOTRhYWM3NjcwNTc4NTMxOTIxMTE4YzgwNjNjYzNmMzYyYmIxYzU1MTZhZTQ4OCJdXSwiY29udGVudCI6IiIsInNpZyI6IjFiYWRiNmYzMjRjOWJhYmY0Nzc2ZjYzMDIxZTNiMzU1NmQ0ZjdlMjAwNTM0ZGFlYjM4ZjFlODA1YmRlZGE0ZThjYjkwNTU4NmQzNGVkM2M3NGZjNDk0MTI5NDFkMmNkZjRlMGZlYWJjNzBjZWIxMjAwNTIxOTVjZDYxYWNhMzY0In0K" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http header: "Content-Type: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http header: "Content-Length: 26" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 event timer del: 6: 542845223 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 generic phase: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 rewrite phase: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 test location: "/health" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 test location: "/report" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 test location: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 using configuration "=/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http cl:26 max:104857600 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 rewrite phase: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:24 [notice] 1414245#1414245: *41 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script if -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script if: false -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 post rewrite phase: 4 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 generic phase: 5 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 generic phase: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 generic phase: 7 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 access phase: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 access phase: 9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 access phase: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 post access phase: 11 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 generic phase: 12 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 generic phase: 13 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http client request body preread 26 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http request body content length filter -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http body new buf t:1 f:0 00005719592403A1, pos 00005719592403A1, size: 26 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http init upstream, client timer: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "QUERY_STRING" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "26" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "CONTENT_LENGTH: 26" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "REQUEST_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "nginx/" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "REMOTE_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "58206" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "REMOTE_PORT: 58206" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "SERVER_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "SERVER_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "SERVER_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiJhMzM5MWRiMmY0MDk4M2YzMTZjNWRiNWM0MTQzOWE3YThjYWE0NDQxZjUzNzU3MmY1OWI2NWJkZWU3ZDkzNWMyIiwicHVia2V5IjoiMDM5NmI0MjYwOTAyODRhMjgyOTQwNzhkY2U1M2ZlNzM3OTFhYjYyM2MzZmM0NmFiNDQwOWZlYTA1MTA5YTZkYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODQsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbImV4cGlyYXRpb24iLCIxNzU3MjkyNjg0Il0sWyJ4IiwiMGYwYWQ2OTRlZmIyMzdhY2EwOTRhYWM3NjcwNTc4NTMxOTIxMTE4YzgwNjNjYzNmMzYyYmIxYzU1MTZhZTQ4OCJdXSwiY29udGVudCI6IiIsInNpZyI6IjFiYWRiNmYzMjRjOWJhYmY0Nzc2ZjYzMDIxZTNiMzU1NmQ0ZjdlMjAwNTM0ZGFlYjM4ZjFlODA1YmRlZGE0ZThjYjkwNTU4NmQzNGVkM2M3NGZjNDk0MTI5NDFkMmNkZjRlMGZlYWJjNzBjZWIxMjAwNTIxOTVjZDYxYWNhMzY0In0K" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 fastcgi param: "HTTP_CONTENT_LENGTH: 26" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 posix_memalign: 0000571959247160:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http cleanup add: 0000571959247240 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 get rr peer, try: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 stream socket 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #42 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 connected -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream connect: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream send request -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream send request body -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 chain writer buf fl:0 s:1224 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 chain writer buf fl:0 s:26 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 chain writer buf fl:0 s:14 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 chain writer in: 00005719592472B0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 writev: 1264 of 1264 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 chain writer out: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 event timer add: 10: 60000:542845223 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http request count:2 blk:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http run request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 malloc: 0000571959248170:4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 recv: fd:10 152 of 4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 8E -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 02 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record length: 142 -2025/09/07 19:51:24 [error] 1414245#1414245: *41 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:24] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 recv: eof:0, avail:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 recv: fd:10 1008 of 3944 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 91 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record length: 401 -2025/09/07 19:51:24 [error] 1414245#1414245: *41 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 0, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 1, reason: Request validation passed -AUTH: pubkey extracted: '0396b426090284a28294078dce53fe73791ab623c3fc46ab4409fea05109a6db' -AUTH: resource_hash: '0f0ad694efb237aca094aac7670578531921118c8063cc3f362bb1c5516ae488' -AUTH: operation: 'upload'" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 02 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 24 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 04 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record length: 548 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi header: "Status: 200 OK" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi parser: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:24 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 write new buf t:1 f:0 0000571959247570, pos 0000571959247570, size: 260 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http write filter: l:0 f:0 s:260 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http cacheable: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream process upstream -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe read upstream: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe preread: 526 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe buf free s:0 t:1 f:0 0000571959248170, pos 00005719592483EA, size: 526 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe length: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe write downstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe write busy: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe write: out:0000000000000000, f:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe read upstream: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe buf free s:0 t:1 f:0 0000571959248170, pos 00005719592483EA, size: 526 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe length: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 event timer: 10, old: 542845223, new: 542845226 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 2 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59997 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream process upstream -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe read upstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 readv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 readv: 1, last:2936 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe recv chain: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe buf free s:0 t:1 f:0 0000571959248170, pos 00005719592483EA, size: 526 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe length: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 input buf #0 00005719592483EA -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi closed stdout -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 03 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 08 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi record length: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http fastcgi sent end request -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 input buf 00005719592483EA 498 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe write downstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe write downstream flush in -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http postpone filter "/upload?" 0000571959247280 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http chunk: 498 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 write old buf t:1 f:0 0000571959247570, pos 0000571959247570, size: 260 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 write new buf t:1 f:0 00005719592478B8, pos 00005719592478B8, size: 5 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 write new buf t:1 f:0 0000571959248170, pos 00005719592483EA, size: 498 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http write filter: l:0 f:0 s:765 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 pipe write downstream done -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 event timer: 10, old: 542845223, new: 542845226 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream exit: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 finalize http upstream request: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 finalize http fastcgi request -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 free rr peer 1 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 close http upstream connection: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 event timer del: 10: 542845223 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http upstream temp fd: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http chunk: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 write old buf t:1 f:0 0000571959247570, pos 0000571959247570, size: 260 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 write old buf t:1 f:0 00005719592478B8, pos 00005719592478B8, size: 5 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 write old buf t:1 f:0 0000571959248170, pos 00005719592483EA, size: 498 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http write filter: l:1 f:0 s:770 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http write filter limit 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 writev: 770 of 770 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http write filter 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 set http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http close request -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http log handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 free: 0000571959248170 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 free: 000057195925F520, unused: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 free: 0000571959255890, unused: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 free: 0000571959247160, unused: 1746 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 hc free: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 hc busy: 0000000000000000 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 tcp_nodelay -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 event timer add: 6: 65000:542850226 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 recv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 recv: fd:6 0 of 1024 -2025/09/07 19:51:24 [info] 1414245#1414245: *41 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 close http connection: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 event timer del: 6: 542850226 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *41 free: 000057195923D840, unused: 120 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:24 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 accept: 127.0.0.1:58222 fd:6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 event timer add: 6: 60000:542845249 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 22 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http wait request handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 recv: fd:6 151 of 1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http process request line -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http uri: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http args: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http exten: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http process request header line -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http header: "Host: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http header: "Accept: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http header: "Content-Type: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http header: "Content-Length: 21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 event timer del: 6: 542845249 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 generic phase: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 rewrite phase: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 test location: "/health" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 test location: "/report" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 test location: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 using configuration "=/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http cl:21 max:104857600 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 rewrite phase: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:24 [notice] 1414245#1414245: *43 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script if -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script if: false -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 post rewrite phase: 4 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 generic phase: 5 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 generic phase: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 generic phase: 7 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 access phase: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 access phase: 9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 access phase: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 post access phase: 11 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 generic phase: 12 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 generic phase: 13 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http client request body preread 21 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http request body content length filter -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http body new buf t:1 f:0 0000571959240122, pos 0000571959240122, size: 21 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http init upstream, client timer: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "QUERY_STRING" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "CONTENT_LENGTH: 21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "REQUEST_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "nginx/" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "REMOTE_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "58222" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "REMOTE_PORT: 58222" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "SERVER_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "SERVER_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "SERVER_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 fastcgi param: "HTTP_CONTENT_LENGTH: 21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http cleanup add: 00005719592566B8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 get rr peer, try: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 stream socket 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #44 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 connected -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream connect: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream send request -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream send request body -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 chain writer buf fl:0 s:584 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 chain writer buf fl:0 s:21 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 chain writer buf fl:0 s:11 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 chain writer in: 0000571959256728 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 writev: 616 of 616 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 chain writer out: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 event timer add: 10: 60000:542845249 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http request count:2 blk:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http run request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 malloc: 0000571959247160:4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 posix_memalign: 0000571959248170:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 recv: fd:10 152 of 4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 8A -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record length: 138 -2025/09/07 19:51:24 [error] 1414245#1414245: *43 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:24] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: anonymous - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 recv: eof:0, avail:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 recv: fd:10 416 of 3944 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 82 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record length: 130 -2025/09/07 19:51:24 [error] 1414245#1414245: *43 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: NO -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: missing_auth - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: E5 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 03 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record length: 229 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi parser: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:24 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 write new buf t:1 f:0 0000571959248310, pos 0000571959248310, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http cacheable: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream process upstream -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe read upstream: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe preread: 196 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe buf free s:0 t:1 f:0 0000571959247160, pos 00005719592472D4, size: 196 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe length: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe write downstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe write busy: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe write: out:0000000000000000, f:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe read upstream: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe buf free s:0 t:1 f:0 0000571959247160, pos 00005719592472D4, size: 196 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe length: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 event timer: 10, old: 542845249, new: 542845250 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream process upstream -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe read upstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 readv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 readv: 1, last:3528 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe recv chain: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe buf free s:0 t:1 f:0 0000571959247160, pos 00005719592472D4, size: 196 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe length: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 input buf #0 00005719592472D4 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi closed stdout -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 03 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 08 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi record length: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http fastcgi sent end request -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 input buf 00005719592472D4 169 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe write downstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe write downstream flush in -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http postpone filter "/upload?" 00005719592566F8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http chunk: 169 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 write old buf t:1 f:0 0000571959248310, pos 0000571959248310, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 write new buf t:1 f:0 0000571959256870, pos 0000571959256870, size: 4 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 write new buf t:1 f:0 0000571959247160, pos 00005719592472D4, size: 169 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http write filter: l:0 f:0 s:356 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 pipe write downstream done -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 event timer: 10, old: 542845249, new: 542845250 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream exit: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 finalize http upstream request: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 finalize http fastcgi request -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 free rr peer 1 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 close http upstream connection: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 event timer del: 10: 542845249 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http upstream temp fd: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http chunk: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 write old buf t:1 f:0 0000571959248310, pos 0000571959248310, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 write old buf t:1 f:0 0000571959256870, pos 0000571959256870, size: 4 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 write old buf t:1 f:0 0000571959247160, pos 00005719592472D4, size: 169 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http write filter: l:1 f:0 s:361 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http write filter limit 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 writev: 361 of 361 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http write filter 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 set http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http close request -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http log handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 free: 0000571959247160 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 free: 000057195925F520, unused: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 free: 0000571959255890, unused: 14 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 free: 0000571959248170, unused: 2474 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 hc free: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 hc busy: 0000000000000000 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 tcp_nodelay -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 event timer add: 6: 65000:542850250 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 recv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 recv: fd:6 0 of 1024 -2025/09/07 19:51:24 [info] 1414245#1414245: *43 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 close http connection: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 event timer del: 6: 542850250 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *43 free: 000057195923D840, unused: 120 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:24 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 accept: 127.0.0.1:58236 fd:6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 event timer add: 6: 60000:542845268 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 17 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http wait request handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 recv: fd:6 190 of 1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http process request line -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http uri: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http args: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http exten: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http process request header line -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http header: "Host: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http header: "Accept: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http header: "Authorization: Bearer invalidtoken123" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http header: "Content-Type: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http header: "Content-Length: 21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 event timer del: 6: 542845268 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 generic phase: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 rewrite phase: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 test location: "/health" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 test location: "/report" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 test location: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 using configuration "=/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http cl:21 max:104857600 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 rewrite phase: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:24 [notice] 1414245#1414245: *45 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script if -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script if: false -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 post rewrite phase: 4 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 generic phase: 5 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 generic phase: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 generic phase: 7 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 access phase: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 access phase: 9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 access phase: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 post access phase: 11 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 generic phase: 12 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 generic phase: 13 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http client request body preread 21 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http request body content length filter -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http body new buf t:1 f:0 0000571959240149, pos 0000571959240149, size: 21 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http init upstream, client timer: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "QUERY_STRING" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "CONTENT_LENGTH: 21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "REQUEST_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "nginx/" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "REMOTE_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "58236" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "REMOTE_PORT: 58236" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "SERVER_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "SERVER_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "SERVER_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "HTTP_AUTHORIZATION: Bearer invalidtoken123" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 fastcgi param: "HTTP_CONTENT_LENGTH: 21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http cleanup add: 00005719592566F0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 get rr peer, try: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 stream socket 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #46 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 connected -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http upstream connect: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http upstream send request -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http upstream send request body -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 chain writer buf fl:0 s:624 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 chain writer buf fl:0 s:21 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 chain writer buf fl:0 s:11 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 chain writer in: 0000571959256760 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 writev: 656 of 656 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 chain writer out: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 event timer add: 10: 60000:542845268 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http request count:2 blk:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http run request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 malloc: 0000571959247160:4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 posix_memalign: 0000571959248170:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 recv: fd:10 152 of 4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 8E -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 02 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record length: 142 -2025/09/07 19:51:24 [error] 1414245#1414245: *45 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:24] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 recv: eof:0, avail:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 recv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 recv: fd:10 664 of 3944 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: A6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 02 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record length: 422 -2025/09/07 19:51:24 [error] 1414245#1414245: *45 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header -AUTH: pubkey extracted: '' -AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: BE -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 02 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record length: 190 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi parser: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:24 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 write new buf t:1 f:0 0000571959248360, pos 0000571959248360, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http cacheable: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http upstream process upstream -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 pipe read upstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 pipe preread: 156 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 readv: eof:1, avail:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 readv: 1, last:3280 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 pipe recv chain: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 pipe buf free s:0 t:1 f:0 0000571959247160, pos 00005719592473F4, size: 156 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 pipe length: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 input buf #0 00005719592473F4 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi closed stdout -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 03 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 08 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi record length: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http fastcgi sent end request -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 input buf 00005719592473F4 130 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 pipe write downstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 pipe write downstream flush in -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http postpone filter "/upload?" 0000571959256730 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http chunk: 130 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 write old buf t:1 f:0 0000571959248360, pos 0000571959248360, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 write new buf t:1 f:0 0000571959256858, pos 0000571959256858, size: 4 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 write new buf t:1 f:0 0000571959247160, pos 00005719592473F4, size: 130 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http write filter: l:0 f:0 s:317 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 pipe write downstream done -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 event timer: 10, old: 542845268, new: 542845269 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http upstream exit: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 finalize http upstream request: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 finalize http fastcgi request -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 free rr peer 1 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 close http upstream connection: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 event timer del: 10: 542845268 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http upstream temp fd: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http chunk: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 write old buf t:1 f:0 0000571959248360, pos 0000571959248360, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 write old buf t:1 f:0 0000571959256858, pos 0000571959256858, size: 4 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 write old buf t:1 f:0 0000571959247160, pos 00005719592473F4, size: 130 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http write filter: l:1 f:0 s:322 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http write filter limit 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 writev: 322 of 322 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http write filter 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 set http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http close request -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http log handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 free: 0000571959247160 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 free: 000057195925F520, unused: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 free: 0000571959255890, unused: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 free: 0000571959248170, unused: 2426 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 hc free: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 hc busy: 0000000000000000 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 tcp_nodelay -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 event timer add: 6: 65000:542850269 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 recv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 recv: fd:6 0 of 1024 -2025/09/07 19:51:24 [info] 1414245#1414245: *45 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 close http connection: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 event timer del: 6: 542850269 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *45 free: 000057195923D840, unused: 120 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 2 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:24 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 accept: 127.0.0.1:58238 fd:6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 event timer add: 6: 60000:542845283 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 12 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http wait request handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 recv: fd:6 190 of 1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http process request line -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http uri: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http args: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http exten: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http process request header line -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http header: "Host: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http header: "Accept: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http header: "Authorization: Nostr invalid!@#base64" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http header: "Content-Type: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http header: "Content-Length: 21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 event timer del: 6: 542845283 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 generic phase: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 rewrite phase: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 test location: "/health" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 test location: "/report" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 test location: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 using configuration "=/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http cl:21 max:104857600 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 rewrite phase: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:24 [notice] 1414245#1414245: *47 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script if -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script if: false -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 post rewrite phase: 4 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 generic phase: 5 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 generic phase: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 generic phase: 7 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 access phase: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 access phase: 9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 access phase: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 post access phase: 11 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 generic phase: 12 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 generic phase: 13 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http client request body preread 21 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http request body content length filter -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http body new buf t:1 f:0 0000571959240149, pos 0000571959240149, size: 21 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http init upstream, client timer: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "QUERY_STRING" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "CONTENT_LENGTH: 21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "REQUEST_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "nginx/" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "REMOTE_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "58238" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "REMOTE_PORT: 58238" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "SERVER_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "SERVER_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "SERVER_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "HTTP_AUTHORIZATION: Nostr invalid!@#base64" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 fastcgi param: "HTTP_CONTENT_LENGTH: 21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http cleanup add: 00005719592566F0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 get rr peer, try: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 stream socket 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #48 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 connected -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http upstream connect: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http upstream send request -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http upstream send request body -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 chain writer buf fl:0 s:624 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 chain writer buf fl:0 s:21 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 chain writer buf fl:0 s:11 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 chain writer in: 0000571959256760 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 writev: 656 of 656 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 chain writer out: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 event timer add: 10: 60000:542845283 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http request count:2 blk:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http run request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 malloc: 0000571959247160:4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 posix_memalign: 0000571959248170:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 recv: fd:10 152 of 4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 8E -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 02 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record length: 142 -2025/09/07 19:51:24 [error] 1414245#1414245: *47 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:24] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 recv: eof:0, avail:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 recv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 recv: fd:10 664 of 3944 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: A6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 02 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record length: 422 -2025/09/07 19:51:24 [error] 1414245#1414245: *47 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: Failed to parse authorization header -AUTH: pubkey extracted: '' -AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: BE -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 02 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record length: 190 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi parser: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:24 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 write new buf t:1 f:0 0000571959248360, pos 0000571959248360, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http cacheable: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http upstream process upstream -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 pipe read upstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 pipe preread: 156 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 readv: eof:1, avail:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 readv: 1, last:3280 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 pipe recv chain: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 pipe buf free s:0 t:1 f:0 0000571959247160, pos 00005719592473F4, size: 156 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 pipe length: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 input buf #0 00005719592473F4 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi closed stdout -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 03 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 08 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi record length: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http fastcgi sent end request -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 input buf 00005719592473F4 130 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 pipe write downstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 pipe write downstream flush in -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http postpone filter "/upload?" 0000571959256730 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http chunk: 130 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 write old buf t:1 f:0 0000571959248360, pos 0000571959248360, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 write new buf t:1 f:0 0000571959256858, pos 0000571959256858, size: 4 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 write new buf t:1 f:0 0000571959247160, pos 00005719592473F4, size: 130 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http write filter: l:0 f:0 s:317 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 pipe write downstream done -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 event timer: 10, old: 542845283, new: 542845284 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http upstream exit: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 finalize http upstream request: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 finalize http fastcgi request -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 free rr peer 1 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 close http upstream connection: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 event timer del: 10: 542845283 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http upstream temp fd: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http chunk: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 write old buf t:1 f:0 0000571959248360, pos 0000571959248360, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 write old buf t:1 f:0 0000571959256858, pos 0000571959256858, size: 4 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 write old buf t:1 f:0 0000571959247160, pos 00005719592473F4, size: 130 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http write filter: l:1 f:0 s:322 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http write filter limit 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 writev: 322 of 322 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http write filter 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 set http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http close request -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http log handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 free: 0000571959247160 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 free: 000057195925F520, unused: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 free: 0000571959255890, unused: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 free: 0000571959248170, unused: 2426 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 hc free: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 hc busy: 0000000000000000 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 tcp_nodelay -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 event timer add: 6: 65000:542850284 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 recv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 recv: fd:6 0 of 1024 -2025/09/07 19:51:24 [info] 1414245#1414245: *47 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 close http connection: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 event timer del: 6: 542850284 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *47 free: 000057195923D840, unused: 120 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:24 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 accept: 127.0.0.1:58252 fd:6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 event timer add: 6: 60000:542845308 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 23 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http wait request handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 recv: fd:6 230 of 1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http process request line -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http uri: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http args: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http exten: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http process request header line -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http header: "Host: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http header: "Accept: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http header: "Authorization: Nostr eyJraW5kIjoyNDI0MiwiY29udGVudCI6IiIsImNyZWF0ZWRfYXQiOg==" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http header: "Content-Type: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http header: "Content-Length: 21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 event timer del: 6: 542845308 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 generic phase: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 rewrite phase: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 test location: "/health" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 test location: "/report" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 test location: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 using configuration "=/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http cl:21 max:104857600 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 rewrite phase: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:24 [notice] 1414245#1414245: *49 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script if -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script if: false -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 post rewrite phase: 4 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 generic phase: 5 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 generic phase: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 generic phase: 7 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 access phase: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 access phase: 9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 access phase: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 post access phase: 11 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 generic phase: 12 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 generic phase: 13 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http client request body preread 21 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http request body content length filter -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http body new buf t:1 f:0 0000571959240171, pos 0000571959240171, size: 21 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http init upstream, client timer: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "QUERY_STRING" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "CONTENT_LENGTH: 21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "REQUEST_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "nginx/" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "REMOTE_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "58252" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "REMOTE_PORT: 58252" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "SERVER_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "SERVER_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "SERVER_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyNDI0MiwiY29udGVudCI6IiIsImNyZWF0ZWRfYXQiOg==" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 fastcgi param: "HTTP_CONTENT_LENGTH: 21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http cleanup add: 0000571959256718 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 get rr peer, try: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 stream socket 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #50 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 connected -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http upstream connect: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http upstream send request -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http upstream send request body -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 chain writer buf fl:0 s:664 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 chain writer buf fl:0 s:21 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 chain writer buf fl:0 s:11 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 chain writer in: 0000571959256788 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 writev: 696 of 696 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 chain writer out: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 event timer add: 10: 60000:542845308 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http request count:2 blk:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http run request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 2 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59998 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 malloc: 0000571959247160:4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 posix_memalign: 0000571959248170:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 recv: fd:10 152 of 4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 8E -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 02 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record length: 142 -2025/09/07 19:51:24 [error] 1414245#1414245: *49 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:24] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 recv: eof:0, avail:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59998 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 recv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 recv: fd:10 648 of 3944 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 9F -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record length: 415 -2025/09/07 19:51:24 [error] 1414245#1414245: *49 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization -AUTH: pubkey extracted: '' -AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: B7 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record length: 183 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi parser: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:24 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 write new buf t:1 f:0 0000571959248360, pos 0000571959248360, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http cacheable: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http upstream process upstream -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 pipe read upstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 pipe preread: 148 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 readv: eof:1, avail:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 readv: 1, last:3296 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 pipe recv chain: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 pipe buf free s:0 t:1 f:0 0000571959247160, pos 00005719592473EC, size: 148 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 pipe length: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 input buf #0 00005719592473EC -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi closed stdout -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 03 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 08 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi record length: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http fastcgi sent end request -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 input buf 00005719592473EC 123 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 pipe write downstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 pipe write downstream flush in -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http postpone filter "/upload?" 0000571959256758 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http chunk: 123 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 write old buf t:1 f:0 0000571959248360, pos 0000571959248360, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 write new buf t:1 f:0 0000571959248658, pos 0000571959248658, size: 4 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 write new buf t:1 f:0 0000571959247160, pos 00005719592473EC, size: 123 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http write filter: l:0 f:0 s:310 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 pipe write downstream done -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 event timer: 10, old: 542845308, new: 542845310 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http upstream exit: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 finalize http upstream request: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 finalize http fastcgi request -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 free rr peer 1 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 close http upstream connection: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 event timer del: 10: 542845308 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http upstream temp fd: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http chunk: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 write old buf t:1 f:0 0000571959248360, pos 0000571959248360, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 write old buf t:1 f:0 0000571959248658, pos 0000571959248658, size: 4 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 write old buf t:1 f:0 0000571959247160, pos 00005719592473EC, size: 123 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http write filter: l:1 f:0 s:315 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http write filter limit 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 writev: 315 of 315 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http write filter 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 set http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http close request -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http log handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 free: 0000571959247160 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 free: 000057195925F520, unused: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 free: 0000571959255890, unused: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 free: 0000571959248170, unused: 2386 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 hc free: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 hc busy: 0000000000000000 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 tcp_nodelay -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 event timer add: 6: 65000:542850310 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 recv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 recv: fd:6 0 of 1024 -2025/09/07 19:51:24 [info] 1414245#1414245: *49 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 close http connection: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 event timer del: 6: 542850310 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *49 free: 000057195923D840, unused: 120 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:24 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 accept: 127.0.0.1:58258 fd:6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 event timer add: 6: 60000:542845334 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 23 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http wait request handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 recv: fd:6 258 of 1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http process request line -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http uri: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http args: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http exten: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http process request header line -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http header: "Host: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http header: "Accept: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http header: "Authorization: Nostr eyJraW5kIjoyNDI0MiwiY29udGVudCI6IiIsImNyZWF0ZWRfYXQiOjEyMzQ1Njc4OTAsInRhZ3MiOltdfQ==" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http header: "Content-Type: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http header: "Content-Length: 21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 event timer del: 6: 542845334 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 generic phase: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 rewrite phase: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 test location: "/health" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 test location: "/report" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 test location: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 using configuration "=/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http cl:21 max:104857600 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 rewrite phase: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:24 [notice] 1414245#1414245: *51 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script if -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script if: false -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 post rewrite phase: 4 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 generic phase: 5 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 generic phase: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 generic phase: 7 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 access phase: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 access phase: 9 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 access phase: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 post access phase: 11 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 generic phase: 12 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 generic phase: 13 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http client request body preread 21 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http request body content length filter -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http body new buf t:1 f:0 000057195924018D, pos 000057195924018D, size: 21 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http init upstream, client timer: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "QUERY_STRING" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "CONTENT_LENGTH: 21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "REQUEST_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "nginx/" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "REMOTE_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "58258" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "REMOTE_PORT: 58258" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "SERVER_ADDR" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "SERVER_PORT" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "SERVER_NAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script var: "./blobs" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyNDI0MiwiY29udGVudCI6IiIsImNyZWF0ZWRfYXQiOjEyMzQ1Njc4OTAsInRhZ3MiOltdfQ==" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 fastcgi param: "HTTP_CONTENT_LENGTH: 21" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http cleanup add: 0000571959256730 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 get rr peer, try: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 stream socket 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #52 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 connected -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http upstream connect: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http upstream send request -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http upstream send request body -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 chain writer buf fl:0 s:688 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 chain writer buf fl:0 s:21 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 chain writer buf fl:0 s:11 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 chain writer in: 00005719592567A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 writev: 720 of 720 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 chain writer out: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 event timer add: 10: 60000:542845334 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http request count:2 blk:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http run request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 malloc: 0000571959247160:4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 posix_memalign: 0000571959248170:4096 @16 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 recv: eof:0, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 recv: fd:10 152 of 4096 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 8E -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 02 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record length: 142 -2025/09/07 19:51:24 [error] 1414245#1414245: *51 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:24] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 recv: eof:0, avail:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http upstream dummy handler -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http upstream request: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http upstream process header -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 recv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 recv: fd:10 648 of 3944 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 9F -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record length: 415 -2025/09/07 19:51:24 [error] 1414245#1414245: *51 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed -AUTH: pubkey extracted: '' -AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:24] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 07 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: B7 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record length: 183 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi parser: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi parser: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi header done -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:24 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 write new buf t:1 f:0 0000571959248370, pos 0000571959248370, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http cacheable: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http upstream process upstream -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 pipe read upstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 pipe preread: 148 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 readv: eof:1, avail:0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 readv: 1, last:3296 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 pipe recv chain: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 pipe buf free s:0 t:1 f:0 0000571959247160, pos 00005719592473EC, size: 148 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 pipe length: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 input buf #0 00005719592473EC -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 06 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record length: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi closed stdout -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 03 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 01 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 08 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record byte: 00 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi record length: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http fastcgi sent end request -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 input buf 00005719592473EC 123 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 pipe write downstream: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 pipe write downstream flush in -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http postpone filter "/upload?" 0000571959256770 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http chunk: 123 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 write old buf t:1 f:0 0000571959248370, pos 0000571959248370, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 write new buf t:1 f:0 0000571959248668, pos 0000571959248668, size: 4 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 write new buf t:1 f:0 0000571959247160, pos 00005719592473EC, size: 123 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http write filter: l:0 f:0 s:310 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 pipe write downstream done -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 event timer: 10, old: 542845334, new: 542845335 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http upstream exit: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 finalize http upstream request: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 finalize http fastcgi request -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 free rr peer 1 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 close http upstream connection: 10 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 event timer del: 10: 542845334 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http upstream temp fd: -1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http output filter "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http copy filter: "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http chunk: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 write old buf t:1 f:0 0000571959248370, pos 0000571959248370, size: 181 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 write old buf t:1 f:0 0000571959248668, pos 0000571959248668, size: 4 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 write old buf t:1 f:0 0000571959247160, pos 00005719592473EC, size: 123 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http write filter: l:1 f:0 s:315 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http write filter limit 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 writev: 315 of 315 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http write filter 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http copy filter: 0 "/upload?" -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 set http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http close request -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http log handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 free: 0000571959247160 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 free: 000057195925F520, unused: 3 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 free: 0000571959255890, unused: 8 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 free: 0000571959248170, unused: 2354 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 hc free: 0000000000000000 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 hc busy: 0000000000000000 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 tcp_nodelay -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 reusable connection: 1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 event timer add: 6: 65000:542850335 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 http keepalive handler -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 malloc: 00005719592400A0:1024 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 recv: eof:1, avail:-1 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 recv: fd:6 0 of 1024 -2025/09/07 19:51:24 [info] 1414245#1414245: *51 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 close http connection: 6 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 event timer del: 6: 542850335 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 reusable connection: 0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 free: 00005719592400A0 -2025/09/07 19:51:24 [debug] 1414245#1414245: *51 free: 000057195923D840, unused: 120 -2025/09/07 19:51:24 [debug] 1414245#1414245: timer delta: 2 -2025/09/07 19:51:24 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:24 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:25 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 accept: 127.0.0.1:58262 fd:6 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 event timer add: 6: 60000:542845373 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 reusable connection: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 36 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http wait request handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 malloc: 00005719592400A0:1024 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 recv: eof:0, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 recv: fd:6 838 of 1024 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 reusable connection: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http process request line -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http uri: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http args: "" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http exten: "" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http process request header line -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http header: "Host: localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http header: "Accept: */*" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http header: "Authorization: Nostr ewogICJraW5kIjogMjQyNDIsCiAgImNvbnRlbnQiOiAiIiwKICAiY3JlYXRlZF9hdCI6IDE3NTcyODkwODUsCiAgInB1YmtleSI6ICIxMjM0NTY3ODkwYWJjZGVmMTIzNDU2Nzg5MGFiY2RlZiIsCiAgInRhZ3MiOiBbWyJ0IiwgInVwbG9hZCJdLCBbIngiLCAiY2Y0ZTFiMzQ1OGMxNzY3NWFlNjIxNGE1MTk5YzM3OTAxZDdhNzU3NzNkZDkzZmYxZDM0ZWM0YjY1YjNiNTE2NCJdXSwKICAiaWQiOiAiMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMCIsCiAgInNpZyI6ICIwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwIgp9" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http header: "Content-Type: text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http header: "Content-Length: 21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http header done -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 event timer del: 6: 542845373 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 generic phase: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 rewrite phase: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 test location: "/health" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 test location: "/report" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 test location: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 using configuration "=/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http cl:21 max:104857600 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 rewrite phase: 3 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "PUT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:25 [notice] 1414245#1414245: *53 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script if -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script if: false -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 post rewrite phase: 4 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 generic phase: 5 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 generic phase: 6 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 generic phase: 7 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 access phase: 8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 access phase: 9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 access phase: 10 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 post access phase: 11 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 generic phase: 12 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 generic phase: 13 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http client request body preread 21 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http request body content length filter -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http body new buf t:1 f:0 00005719592403D1, pos 00005719592403D1, size: 21 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http init upstream, client timer: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "QUERY_STRING" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "PUT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "CONTENT_LENGTH: 21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "REQUEST_URI" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "./blobs" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "HTTP/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "http" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "CGI/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "nginx/" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "1.18.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "REMOTE_PORT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "58262" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "REMOTE_PORT: 58262" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "SERVER_ADDR" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "SERVER_PORT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "SERVER_NAME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "localhost" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "200" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script var: "./blobs" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "HTTP_AUTHORIZATION: Nostr ewogICJraW5kIjogMjQyNDIsCiAgImNvbnRlbnQiOiAiIiwKICAiY3JlYXRlZF9hdCI6IDE3NTcyODkwODUsCiAgInB1YmtleSI6ICIxMjM0NTY3ODkwYWJjZGVmMTIzNDU2Nzg5MGFiY2RlZiIsCiAgInRhZ3MiOiBbWyJ0IiwgInVwbG9hZCJdLCBbIngiLCAiY2Y0ZTFiMzQ1OGMxNzY3NWFlNjIxNGE1MTk5YzM3OTAxZDdhNzU3NzNkZDkzZmYxZDM0ZWM0YjY1YjNiNTE2NCJdXSwKICAiaWQiOiAiMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMCIsCiAgInNpZyI6ICIwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwIgp9" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 fastcgi param: "HTTP_CONTENT_LENGTH: 21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 posix_memalign: 0000571959247160:4096 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http cleanup add: 0000571959247270 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 get rr peer, try: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 stream socket 10 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #54 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 connected -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http upstream connect: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http upstream send request -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http upstream send request body -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 chain writer buf fl:0 s:1272 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 chain writer buf fl:0 s:21 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 chain writer buf fl:0 s:11 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 chain writer in: 00005719592472E0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 writev: 1304 of 1304 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 chain writer out: 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 event timer add: 10: 60000:542845373 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http request count:2 blk:0 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http run request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http upstream dummy handler -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http upstream process header -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 malloc: 0000571959248170:4096 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 recv: eof:0, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 recv: fd:10 152 of 4096 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 8E -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 02 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record length: 142 -2025/09/07 19:51:25 [error] 1414245#1414245: *53 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:25] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:25] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 recv: eof:0, avail:0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http upstream dummy handler -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http upstream process header -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 recv: eof:1, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 recv: fd:10 648 of 3944 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 9F -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record length: 415 -2025/09/07 19:51:25 [error] 1414245#1414245: *53 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed -AUTH: pubkey extracted: '' -AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:25] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record length: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 06 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: B7 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record length: 183 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi parser: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi parser: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi parser: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi header done -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:25 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 write new buf t:1 f:0 00005719592475A8, pos 00005719592475A8, size: 181 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http cacheable: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http upstream process upstream -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 pipe read upstream: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 pipe preread: 148 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 readv: eof:1, avail:0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 readv: 1, last:3296 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 pipe recv chain: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 pipe buf free s:0 t:1 f:0 0000571959248170, pos 00005719592483FC, size: 148 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 pipe length: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 input buf #0 00005719592483FC -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 06 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record length: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi closed stdout -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 03 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 08 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi record length: 8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http fastcgi sent end request -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 input buf 00005719592483FC 123 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 pipe write downstream: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 pipe write downstream flush in -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http output filter "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http copy filter: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http postpone filter "/upload?" 00005719592472B0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http chunk: 123 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 write old buf t:1 f:0 00005719592475A8, pos 00005719592475A8, size: 181 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 write new buf t:1 f:0 00005719592478A0, pos 00005719592478A0, size: 4 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 write new buf t:1 f:0 0000571959248170, pos 00005719592483FC, size: 123 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http write filter: l:0 f:0 s:310 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http copy filter: 0 "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 pipe write downstream done -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 event timer: 10, old: 542845373, new: 542845375 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http upstream exit: 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 finalize http upstream request: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 finalize http fastcgi request -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 free rr peer 1 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 close http upstream connection: 10 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 event timer del: 10: 542845373 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 reusable connection: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http upstream temp fd: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http output filter "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http copy filter: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http chunk: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 write old buf t:1 f:0 00005719592475A8, pos 00005719592475A8, size: 181 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 write old buf t:1 f:0 00005719592478A0, pos 00005719592478A0, size: 4 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 write old buf t:1 f:0 0000571959248170, pos 00005719592483FC, size: 123 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http write filter: l:1 f:0 s:315 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http write filter limit 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 writev: 315 of 315 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http write filter 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http copy filter: 0 "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 set http keepalive handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http close request -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http log handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 free: 0000571959248170 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 free: 000057195925F520, unused: 3 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 free: 0000571959255890, unused: 8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 free: 0000571959247160, unused: 1770 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 free: 00005719592400A0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 hc free: 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 hc busy: 0000000000000000 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 tcp_nodelay -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 reusable connection: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 event timer add: 6: 65000:542850375 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 http keepalive handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 malloc: 00005719592400A0:1024 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 recv: eof:1, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 recv: fd:6 0 of 1024 -2025/09/07 19:51:25 [info] 1414245#1414245: *53 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 close http connection: 6 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 event timer del: 6: 542850375 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 reusable connection: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 free: 00005719592400A0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *53 free: 000057195923D840, unused: 120 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:25 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 accept: 127.0.0.1:58276 fd:6 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 event timer add: 6: 60000:542845408 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 reusable connection: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 32 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http wait request handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 malloc: 00005719592400A0:1024 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 recv: eof:0, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 recv: fd:6 882 of 1024 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 reusable connection: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http process request line -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http uri: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http args: "" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http exten: "" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http process request header line -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http header: "Host: localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http header: "Accept: */*" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http header: "Authorization: Nostr ewogICJraW5kIjogMjQyNDIsCiAgImNvbnRlbnQiOiAiIiwKICAiY3JlYXRlZF9hdCI6IDE3NTcyODkwODUsCiAgInB1YmtleSI6ICJnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnIiwKICAidGFncyI6IFtbInQiLCAidXBsb2FkIl0sIFsieCIsICI2MzAyNmY3ODZkODdmMGVhY2E4ZmQ4ZjM4MzhiYWMzYzZmYmM4ZGY4ODFmOTUzYjc1ODMxMDU2MzAyMDY1YTc1Il1dLAogICJpZCI6ICIwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwIiwKICAic2lnIjogIjAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAiCn0=" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http header: "Content-Type: text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http header: "Content-Length: 21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http header done -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 event timer del: 6: 542845408 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 generic phase: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 rewrite phase: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 test location: "/health" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 test location: "/report" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 test location: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 using configuration "=/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http cl:21 max:104857600 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 rewrite phase: 3 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "PUT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:25 [notice] 1414245#1414245: *55 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script if -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script if: false -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 post rewrite phase: 4 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 generic phase: 5 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 generic phase: 6 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 generic phase: 7 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 access phase: 8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 access phase: 9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 access phase: 10 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 post access phase: 11 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 generic phase: 12 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 generic phase: 13 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http client request body preread 21 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http request body content length filter -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http body new buf t:1 f:0 00005719592403FD, pos 00005719592403FD, size: 21 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http init upstream, client timer: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "QUERY_STRING" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "PUT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "CONTENT_LENGTH: 21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "REQUEST_URI" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "./blobs" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "HTTP/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "http" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "CGI/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "nginx/" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "1.18.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "REMOTE_PORT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "58276" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "REMOTE_PORT: 58276" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "SERVER_ADDR" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "SERVER_PORT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "SERVER_NAME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "localhost" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "200" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script var: "./blobs" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "HTTP_AUTHORIZATION: Nostr ewogICJraW5kIjogMjQyNDIsCiAgImNvbnRlbnQiOiAiIiwKICAiY3JlYXRlZF9hdCI6IDE3NTcyODkwODUsCiAgInB1YmtleSI6ICJnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnIiwKICAidGFncyI6IFtbInQiLCAidXBsb2FkIl0sIFsieCIsICI2MzAyNmY3ODZkODdmMGVhY2E4ZmQ4ZjM4MzhiYWMzYzZmYmM4ZGY4ODFmOTUzYjc1ODMxMDU2MzAyMDY1YTc1Il1dLAogICJpZCI6ICIwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwIiwKICAic2lnIjogIjAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAiCn0=" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 fastcgi param: "HTTP_CONTENT_LENGTH: 21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 posix_memalign: 0000571959247160:4096 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http cleanup add: 00005719592472A0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 get rr peer, try: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 stream socket 10 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #56 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 connected -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http upstream connect: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http upstream send request -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http upstream send request body -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 chain writer buf fl:0 s:1320 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 chain writer buf fl:0 s:21 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 chain writer buf fl:0 s:11 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 chain writer in: 0000571959247310 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 writev: 1352 of 1352 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 chain writer out: 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 event timer add: 10: 60000:542845408 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http request count:2 blk:0 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http run request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http upstream dummy handler -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http upstream process header -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 malloc: 0000571959248170:4096 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 recv: eof:0, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 recv: fd:10 152 of 4096 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 8E -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 02 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record length: 142 -2025/09/07 19:51:25 [error] 1414245#1414245: *55 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:25] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:25] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 recv: eof:0, avail:0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http upstream dummy handler -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http upstream process header -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 recv: eof:1, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 recv: fd:10 648 of 3944 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 9F -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record length: 415 -2025/09/07 19:51:25 [error] 1414245#1414245: *55 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed -AUTH: pubkey extracted: '' -AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:25] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record length: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 06 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: B7 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record length: 183 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi parser: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi parser: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi parser: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi header done -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:25 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 write new buf t:1 f:0 00005719592475D8, pos 00005719592475D8, size: 181 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http cacheable: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http upstream process upstream -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 pipe read upstream: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 pipe preread: 148 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 readv: eof:1, avail:0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 readv: 1, last:3296 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 pipe recv chain: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 pipe buf free s:0 t:1 f:0 0000571959248170, pos 00005719592483FC, size: 148 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 pipe length: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 input buf #0 00005719592483FC -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 06 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record length: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi closed stdout -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 03 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 08 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi record length: 8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http fastcgi sent end request -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 input buf 00005719592483FC 123 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 pipe write downstream: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 pipe write downstream flush in -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http output filter "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http copy filter: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http postpone filter "/upload?" 00005719592472E0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http chunk: 123 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 write old buf t:1 f:0 00005719592475D8, pos 00005719592475D8, size: 181 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 write new buf t:1 f:0 00005719592478D0, pos 00005719592478D0, size: 4 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 write new buf t:1 f:0 0000571959248170, pos 00005719592483FC, size: 123 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http write filter: l:0 f:0 s:310 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http copy filter: 0 "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 pipe write downstream done -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 event timer: 10, old: 542845408, new: 542845410 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http upstream exit: 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 finalize http upstream request: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 finalize http fastcgi request -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 free rr peer 1 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 close http upstream connection: 10 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 event timer del: 10: 542845408 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 reusable connection: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http upstream temp fd: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http output filter "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http copy filter: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http chunk: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 write old buf t:1 f:0 00005719592475D8, pos 00005719592475D8, size: 181 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 write old buf t:1 f:0 00005719592478D0, pos 00005719592478D0, size: 4 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 write old buf t:1 f:0 0000571959248170, pos 00005719592483FC, size: 123 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http write filter: l:1 f:0 s:315 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http write filter limit 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 writev: 315 of 315 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http write filter 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http copy filter: 0 "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 set http keepalive handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http close request -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http log handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 free: 0000571959248170 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 free: 000057195925F520, unused: 3 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 free: 0000571959255890, unused: 13 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 free: 0000571959247160, unused: 1722 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 free: 00005719592400A0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 hc free: 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 hc busy: 0000000000000000 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 tcp_nodelay -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 reusable connection: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 event timer add: 6: 65000:542850410 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 http keepalive handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 malloc: 00005719592400A0:1024 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 recv: eof:1, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 recv: fd:6 0 of 1024 -2025/09/07 19:51:25 [info] 1414245#1414245: *55 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 close http connection: 6 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 event timer del: 6: 542850410 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 reusable connection: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 free: 00005719592400A0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *55 free: 000057195923D840, unused: 120 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:25 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 accept: 127.0.0.1:58278 fd:6 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 event timer add: 6: 60000:542845654 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 reusable connection: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 243 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http wait request handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 malloc: 00005719592400A0:1024 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 recv: eof:0, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 recv: fd:6 766 of 1024 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 reusable connection: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http process request line -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http uri: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http args: "" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http exten: "" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http process request header line -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http header: "Host: localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http header: "Accept: */*" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http header: "Authorization: Nostr eyJraW5kIjoxLCJpZCI6IjFjMDhkYzg5NjViNDNiMDEwNmRhZjc2MzVmNmIxNmU5Yzg0MzFhYmQxMzU5MWRiZTExMDVhNWQ5N2JhYjc4MTYiLCJwdWJrZXkiOiI4N2QzNTYxZjE5Yjc0YWRiZThiZjg0MDY4Mjk5MjQ2NjA2ODgzMGE5ZDhjMzZiNGEwYzk5ZDM2ZjgyNmNiNmNiIiwiY3JlYXRlZF9hdCI6MTc1NzI4OTA4NSwidGFncyI6W1sidCIsInVwbG9hZCJdLFsieCIsImQ1ZmFhZjE5NmNjY2ZiMjMxMTYzMWQyMzM2N2YwZGFiYjJjNWUwMmFlY2JkOThmZjg3ODk4MjZlNTAyOTZlMWMiXV0sImNvbnRlbnQiOiJ3cm9uZyBraW5kIHRlc3QiLCJzaWciOiJhN2Q0ZDE3NjRjNjljMTk4ODZkZmFkMjY5MjkyYWNhYTkwZmIyMzI5MTEyMDYxZjNiNTRjZWUzOTkyYTJjY2RjYjVmMDdmNTgzYWEzMmEyZGNiZjgwY2E5ZDlkN2RhYzYwNzdjOWZiOTFmY2I1OTdiMTQ1MWNiZTkzZjJlNmMxNiJ9" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http header: "Content-Type: text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http header: "Content-Length: 21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http header done -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 event timer del: 6: 542845654 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 generic phase: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 rewrite phase: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 test location: "/health" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 test location: "/report" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 test location: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 using configuration "=/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http cl:21 max:104857600 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 rewrite phase: 3 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "PUT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:25 [notice] 1414245#1414245: *57 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script if -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script if: false -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 post rewrite phase: 4 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 generic phase: 5 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 generic phase: 6 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 generic phase: 7 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 access phase: 8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 access phase: 9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 access phase: 10 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 post access phase: 11 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 generic phase: 12 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 generic phase: 13 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http client request body preread 21 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http request body content length filter -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http body new buf t:1 f:0 0000571959240389, pos 0000571959240389, size: 21 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http init upstream, client timer: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "QUERY_STRING" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "PUT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "CONTENT_LENGTH: 21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "REQUEST_URI" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "./blobs" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "HTTP/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "http" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "CGI/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "nginx/" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "1.18.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "REMOTE_PORT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "58278" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "REMOTE_PORT: 58278" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "SERVER_ADDR" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "SERVER_PORT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "SERVER_NAME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "localhost" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "200" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script var: "./blobs" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoxLCJpZCI6IjFjMDhkYzg5NjViNDNiMDEwNmRhZjc2MzVmNmIxNmU5Yzg0MzFhYmQxMzU5MWRiZTExMDVhNWQ5N2JhYjc4MTYiLCJwdWJrZXkiOiI4N2QzNTYxZjE5Yjc0YWRiZThiZjg0MDY4Mjk5MjQ2NjA2ODgzMGE5ZDhjMzZiNGEwYzk5ZDM2ZjgyNmNiNmNiIiwiY3JlYXRlZF9hdCI6MTc1NzI4OTA4NSwidGFncyI6W1sidCIsInVwbG9hZCJdLFsieCIsImQ1ZmFhZjE5NmNjY2ZiMjMxMTYzMWQyMzM2N2YwZGFiYjJjNWUwMmFlY2JkOThmZjg3ODk4MjZlNTAyOTZlMWMiXV0sImNvbnRlbnQiOiJ3cm9uZyBraW5kIHRlc3QiLCJzaWciOiJhN2Q0ZDE3NjRjNjljMTk4ODZkZmFkMjY5MjkyYWNhYTkwZmIyMzI5MTEyMDYxZjNiNTRjZWUzOTkyYTJjY2RjYjVmMDdmNTgzYWEzMmEyZGNiZjgwY2E5ZDlkN2RhYzYwNzdjOWZiOTFmY2I1OTdiMTQ1MWNiZTkzZjJlNmMxNiJ9" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 fastcgi param: "HTTP_CONTENT_LENGTH: 21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 posix_memalign: 0000571959247160:4096 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http cleanup add: 0000571959256870 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 get rr peer, try: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 stream socket 10 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #58 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 connected -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream connect: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream send request -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream send request body -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 chain writer buf fl:0 s:1200 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 chain writer buf fl:0 s:21 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 chain writer buf fl:0 s:11 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 chain writer in: 0000571959247298 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 writev: 1232 of 1232 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 chain writer out: 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 event timer add: 10: 60000:542845654 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http request count:2 blk:0 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http run request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream dummy handler -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 2 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 59998 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream process header -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 malloc: 0000571959248170:4096 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 recv: eof:0, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 recv: fd:10 152 of 4096 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 8E -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 02 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record length: 142 -2025/09/07 19:51:25 [error] 1414245#1414245: *57 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:25] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:25] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 recv: eof:0, avail:0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream dummy handler -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 59998 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream process header -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 recv: eof:0, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 recv: fd:10 680 of 3944 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: AB -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 05 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record length: 427 -2025/09/07 19:51:25 [error] 1414245#1414245: *57 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: Unsupported event kind for authentication -AUTH: pubkey extracted: '' -AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:25] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record length: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 06 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: C3 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 05 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record length: 195 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi parser: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi parser: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi parser: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi header done -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:25 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 write new buf t:1 f:0 0000571959247560, pos 0000571959247560, size: 181 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http cacheable: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream process upstream -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe read upstream: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe preread: 164 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe buf free s:0 t:1 f:0 0000571959248170, pos 000057195924840C, size: 164 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe length: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe write downstream: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe write busy: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe write: out:0000000000000000, f:0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe read upstream: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe buf free s:0 t:1 f:0 0000571959248170, pos 000057195924840C, size: 164 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe length: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 event timer: 10, old: 542845654, new: 542845656 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream dummy handler -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 59998 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream process upstream -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe read upstream: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 readv: eof:1, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 readv: 1, last:3264 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe recv chain: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe buf free s:0 t:1 f:0 0000571959248170, pos 000057195924840C, size: 164 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe length: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 input buf #0 000057195924840C -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 06 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record length: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi closed stdout -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 03 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 08 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi record length: 8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http fastcgi sent end request -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 input buf 000057195924840C 135 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe write downstream: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe write downstream flush in -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http output filter "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http copy filter: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http postpone filter "/upload?" 0000571959247268 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http chunk: 135 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 write old buf t:1 f:0 0000571959247560, pos 0000571959247560, size: 181 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 write new buf t:1 f:0 0000571959247858, pos 0000571959247858, size: 4 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 write new buf t:1 f:0 0000571959248170, pos 000057195924840C, size: 135 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http write filter: l:0 f:0 s:322 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http copy filter: 0 "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 pipe write downstream done -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 event timer: 10, old: 542845654, new: 542845657 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream exit: 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 finalize http upstream request: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 finalize http fastcgi request -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 free rr peer 1 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 close http upstream connection: 10 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 event timer del: 10: 542845654 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 reusable connection: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http upstream temp fd: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http output filter "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http copy filter: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http chunk: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 write old buf t:1 f:0 0000571959247560, pos 0000571959247560, size: 181 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 write old buf t:1 f:0 0000571959247858, pos 0000571959247858, size: 4 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 write old buf t:1 f:0 0000571959248170, pos 000057195924840C, size: 135 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http write filter: l:1 f:0 s:327 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http write filter limit 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 writev: 327 of 327 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http write filter 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http copy filter: 0 "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 set http keepalive handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http close request -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http log handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 free: 0000571959248170 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 free: 000057195925F520, unused: 3 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 free: 0000571959255890, unused: 8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 free: 0000571959247160, unused: 1842 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 free: 00005719592400A0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 hc free: 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 hc busy: 0000000000000000 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 tcp_nodelay -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 reusable connection: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 event timer add: 6: 65000:542850657 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 http keepalive handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 malloc: 00005719592400A0:1024 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 recv: eof:1, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 recv: fd:6 0 of 1024 -2025/09/07 19:51:25 [info] 1414245#1414245: *57 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 close http connection: 6 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 event timer del: 6: 542850657 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 reusable connection: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 free: 00005719592400A0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *57 free: 000057195923D840, unused: 120 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:25 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 accept: 127.0.0.1:58288 fd:6 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 event timer add: 6: 60000:542845963 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 reusable connection: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 305 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http wait request handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 malloc: 00005719592400A0:1024 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 recv: eof:0, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 recv: fd:6 734 of 1024 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 reusable connection: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http process request line -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http uri: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http args: "" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http exten: "" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http process request header line -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http header: "Host: localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http header: "Accept: */*" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http header: "Authorization: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiJmZDU2ZTRkYmZhMGM4OGNlODRkZmNlNjlhMzU1NzQxZThkZWNkY2M1YTczNjI5ZjE0YWU4MTE3NzFkNmQ0ZWY3IiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODUsInRhZ3MiOltbIngiLCIxM2NlY2MxOWRmODA5NjNlNWU5MWY3MGZlYjczOGZiYTUzOGFkNDJhODgyZGVhZWYwMjE1NWQyZTU5YjhhZjFmIl1dLCJjb250ZW50IjoiIiwic2lnIjoiZTg4YjA0ODk4YzcwYjI0YzhhNTZmZjM1MmVhMDRjOGQ4MjI5OGY1Yjk5ZjE5YzAzY2IwOGJhNDYxYTkyZGFmMTUxZjI0MWMyOGIyNGI1OWM3NmFlNTU4ZTUwODJiYTM3NTNhZjg2NGM5ODAyMDBmOGQ4NzlhMjM1MjJiZjZiNmEifQ==" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http header: "Content-Type: text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http header: "Content-Length: 21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http header done -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 event timer del: 6: 542845963 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 generic phase: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 rewrite phase: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 test location: "/health" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 test location: "/report" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 test location: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 using configuration "=/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http cl:21 max:104857600 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 rewrite phase: 3 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "PUT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:25 [notice] 1414245#1414245: *59 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script if -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script if: false -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 post rewrite phase: 4 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 generic phase: 5 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 generic phase: 6 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 generic phase: 7 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 access phase: 8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 access phase: 9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 access phase: 10 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 post access phase: 11 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 generic phase: 12 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 generic phase: 13 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http client request body preread 21 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http request body content length filter -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http body new buf t:1 f:0 0000571959240369, pos 0000571959240369, size: 21 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http init upstream, client timer: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "QUERY_STRING" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "PUT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "CONTENT_LENGTH: 21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "REQUEST_URI" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "./blobs" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "HTTP/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "http" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "CGI/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "nginx/" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "1.18.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "REMOTE_PORT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "58288" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "REMOTE_PORT: 58288" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "SERVER_ADDR" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "SERVER_PORT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "SERVER_NAME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "localhost" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "200" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script var: "./blobs" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiJmZDU2ZTRkYmZhMGM4OGNlODRkZmNlNjlhMzU1NzQxZThkZWNkY2M1YTczNjI5ZjE0YWU4MTE3NzFkNmQ0ZWY3IiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODUsInRhZ3MiOltbIngiLCIxM2NlY2MxOWRmODA5NjNlNWU5MWY3MGZlYjczOGZiYTUzOGFkNDJhODgyZGVhZWYwMjE1NWQyZTU5YjhhZjFmIl1dLCJjb250ZW50IjoiIiwic2lnIjoiZTg4YjA0ODk4YzcwYjI0YzhhNTZmZjM1MmVhMDRjOGQ4MjI5OGY1Yjk5ZjE5YzAzY2IwOGJhNDYxYTkyZGFmMTUxZjI0MWMyOGIyNGI1OWM3NmFlNTU4ZTUwODJiYTM3NTNhZjg2NGM5ODAyMDBmOGQ4NzlhMjM1MjJiZjZiNmEifQ==" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 fastcgi param: "HTTP_CONTENT_LENGTH: 21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 posix_memalign: 0000571959247160:4096 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http cleanup add: 0000571959247200 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 get rr peer, try: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 stream socket 10 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #60 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 connected -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream connect: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream send request -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream send request body -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 chain writer buf fl:0 s:1168 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 chain writer buf fl:0 s:21 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 chain writer buf fl:0 s:11 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 chain writer in: 0000571959247270 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 writev: 1200 of 1200 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 chain writer out: 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 event timer add: 10: 60000:542845963 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http request count:2 blk:0 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http run request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream dummy handler -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream process header -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 malloc: 0000571959248170:4096 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 recv: eof:0, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 recv: fd:10 152 of 4096 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 8E -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 02 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record length: 142 -2025/09/07 19:51:25 [error] 1414245#1414245: *59 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:25] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:25] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 recv: eof:0, avail:0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream dummy handler -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream process header -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 recv: eof:0, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 recv: fd:10 696 of 3944 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: B1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record length: 433 -2025/09/07 19:51:25 [error] 1414245#1414245: *59 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation -AUTH: pubkey extracted: '' -AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:25] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record length: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 06 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: C9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record length: 201 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi parser: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi parser: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi parser: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi header done -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:25 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 write new buf t:1 f:0 0000571959247538, pos 0000571959247538, size: 181 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http cacheable: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream process upstream -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe read upstream: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe preread: 172 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe buf free s:0 t:1 f:0 0000571959248170, pos 0000571959248414, size: 172 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe length: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe write downstream: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe write busy: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe write: out:0000000000000000, f:0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe read upstream: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe buf free s:0 t:1 f:0 0000571959248170, pos 0000571959248414, size: 172 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe length: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 event timer: 10, old: 542845963, new: 542845965 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream dummy handler -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 59998 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream process upstream -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe read upstream: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 readv: eof:1, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 readv: 1, last:3248 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe recv chain: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe buf free s:0 t:1 f:0 0000571959248170, pos 0000571959248414, size: 172 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe length: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 input buf #0 0000571959248414 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 06 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record length: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi closed stdout -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 03 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 08 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi record length: 8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http fastcgi sent end request -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 input buf 0000571959248414 141 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe write downstream: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe write downstream flush in -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http output filter "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http copy filter: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http postpone filter "/upload?" 0000571959247240 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http chunk: 141 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 write old buf t:1 f:0 0000571959247538, pos 0000571959247538, size: 181 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 write new buf t:1 f:0 0000571959247830, pos 0000571959247830, size: 4 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 write new buf t:1 f:0 0000571959248170, pos 0000571959248414, size: 141 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http write filter: l:0 f:0 s:328 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http copy filter: 0 "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 pipe write downstream done -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 event timer: 10, old: 542845963, new: 542845965 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream exit: 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 finalize http upstream request: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 finalize http fastcgi request -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 free rr peer 1 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 close http upstream connection: 10 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 event timer del: 10: 542845963 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 reusable connection: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http upstream temp fd: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http output filter "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http copy filter: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http chunk: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 write old buf t:1 f:0 0000571959247538, pos 0000571959247538, size: 181 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 write old buf t:1 f:0 0000571959247830, pos 0000571959247830, size: 4 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 write old buf t:1 f:0 0000571959248170, pos 0000571959248414, size: 141 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http write filter: l:1 f:0 s:333 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http write filter limit 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 writev: 333 of 333 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http write filter 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http copy filter: 0 "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 set http keepalive handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http close request -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http log handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 free: 0000571959248170 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 free: 000057195925F520, unused: 3 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 free: 0000571959255890, unused: 5 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 free: 0000571959247160, unused: 1882 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 free: 00005719592400A0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 hc free: 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 hc busy: 0000000000000000 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 tcp_nodelay -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 reusable connection: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 event timer add: 6: 65000:542850965 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 http keepalive handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 malloc: 00005719592400A0:1024 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 recv: eof:1, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 recv: fd:6 0 of 1024 -2025/09/07 19:51:25 [info] 1414245#1414245: *59 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 close http connection: 6 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 event timer del: 6: 542850965 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 reusable connection: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 free: 00005719592400A0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *59 free: 000057195923D840, unused: 120 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:25 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 accept: 127.0.0.1:58304 fd:6 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 event timer add: 6: 60000:542846243 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 reusable connection: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 277 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http wait request handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 malloc: 00005719592400A0:1024 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 recv: eof:0, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 recv: fd:6 654 of 1024 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 reusable connection: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http process request line -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http uri: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http args: "" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http exten: "" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http process request header line -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http header: "Host: localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http header: "Accept: */*" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http header: "Authorization: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiJmMGE2OWM0NTVjYzA1NmU4ZDM0ZWY3YTAxMmI3M2M2ZGRjOWNlNGY3ZmMwOWU2Mjc3MDc1ZWFiYTFmNDI5OTNkIiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODUsInRhZ3MiOltbInQiLCJ1cGxvYWQiXV0sImNvbnRlbnQiOiIiLCJzaWciOiI0ZTdkYTIzZGE0NjJlZTgxOTMyZTczYzg4NzI1YjU4NTIwN2IyNTRhZmIxZWExNWQ1Y2E0OTBmZWIzZDQ5ZWJlN2E5ZDc5MjkwZmFiMTFjOWYzNzQ3NTcwMDc4YjBjZmE0MjljNDc3NjQxNGU0ZTM2ZTJlNzYxZWRhOGY1OWE2YyJ9" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http header: "Content-Type: text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http header: "Content-Length: 21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http header done -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 event timer del: 6: 542846243 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 generic phase: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 rewrite phase: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 test location: "/health" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 test location: "/report" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 test location: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 using configuration "=/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http cl:21 max:104857600 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 rewrite phase: 3 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "PUT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:25 [notice] 1414245#1414245: *61 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script if -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script if: false -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 post rewrite phase: 4 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 generic phase: 5 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 generic phase: 6 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 generic phase: 7 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 access phase: 8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 access phase: 9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 access phase: 10 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 post access phase: 11 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 generic phase: 12 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 generic phase: 13 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http client request body preread 21 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http request body content length filter -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http body new buf t:1 f:0 0000571959240319, pos 0000571959240319, size: 21 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http init upstream, client timer: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "QUERY_STRING" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "PUT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "CONTENT_LENGTH: 21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "REQUEST_URI" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "./blobs" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "HTTP/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "http" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "CGI/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "nginx/" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "1.18.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "REMOTE_PORT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "58304" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "REMOTE_PORT: 58304" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "SERVER_ADDR" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "SERVER_PORT" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "SERVER_NAME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "localhost" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "200" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script var: "./blobs" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiJmMGE2OWM0NTVjYzA1NmU4ZDM0ZWY3YTAxMmI3M2M2ZGRjOWNlNGY3ZmMwOWU2Mjc3MDc1ZWFiYTFmNDI5OTNkIiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODUsInRhZ3MiOltbInQiLCJ1cGxvYWQiXV0sImNvbnRlbnQiOiIiLCJzaWciOiI0ZTdkYTIzZGE0NjJlZTgxOTMyZTczYzg4NzI1YjU4NTIwN2IyNTRhZmIxZWExNWQ1Y2E0OTBmZWIzZDQ5ZWJlN2E5ZDc5MjkwZmFiMTFjOWYzNzQ3NTcwMDc4YjBjZmE0MjljNDc3NjQxNGU0ZTM2ZTJlNzYxZWRhOGY1OWE2YyJ9" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 fastcgi param: "HTTP_CONTENT_LENGTH: 21" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 posix_memalign: 0000571959247160:4096 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http cleanup add: 0000571959256878 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 get rr peer, try: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 stream socket 10 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #62 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 connected -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream connect: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream send request -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream send request body -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 chain writer buf fl:0 s:1088 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 chain writer buf fl:0 s:21 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 chain writer buf fl:0 s:11 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 chain writer in: 0000571959247220 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 writev: 1120 of 1120 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 chain writer out: 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 event timer add: 10: 60000:542846243 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http request count:2 blk:0 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http run request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream dummy handler -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream process header -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 malloc: 0000571959248170:4096 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 recv: eof:0, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 recv: fd:10 152 of 4096 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 8E -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 02 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record length: 142 -2025/09/07 19:51:25 [error] 1414245#1414245: *61 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:25] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:25] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 recv: eof:0, avail:0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream dummy handler -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream process header -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 recv: eof:0, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 recv: fd:10 696 of 3944 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: B1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record length: 433 -2025/09/07 19:51:25 [error] 1414245#1414245: *61 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation -AUTH: pubkey extracted: '' -AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:25] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record length: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 06 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: C9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 07 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record length: 201 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi parser: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi parser: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi parser: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi header done -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:25 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 write new buf t:1 f:0 00005719592474E8, pos 00005719592474E8, size: 181 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http cacheable: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream process upstream -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe read upstream: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe preread: 172 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe buf free s:0 t:1 f:0 0000571959248170, pos 0000571959248414, size: 172 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe length: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe write downstream: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe write busy: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe write: out:0000000000000000, f:0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe read upstream: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe buf free s:0 t:1 f:0 0000571959248170, pos 0000571959248414, size: 172 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe length: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 event timer: 10, old: 542846243, new: 542846244 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream dummy handler -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C9 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream request: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream process upstream -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe read upstream: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 readv: eof:1, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 readv: 1, last:3248 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe recv chain: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe buf free s:0 t:1 f:0 0000571959248170, pos 0000571959248414, size: 172 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe length: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 input buf #0 0000571959248414 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 06 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record length: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi closed stdout -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 03 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 01 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 08 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record byte: 00 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi record length: 8 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http fastcgi sent end request -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 input buf 0000571959248414 141 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe write downstream: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe write downstream flush in -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http output filter "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http copy filter: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http postpone filter "/upload?" 00005719592471F0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http chunk: 141 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 write old buf t:1 f:0 00005719592474E8, pos 00005719592474E8, size: 181 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 write new buf t:1 f:0 00005719592477E0, pos 00005719592477E0, size: 4 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 write new buf t:1 f:0 0000571959248170, pos 0000571959248414, size: 141 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http write filter: l:0 f:0 s:328 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http copy filter: 0 "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 pipe write downstream done -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 event timer: 10, old: 542846243, new: 542846245 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream exit: 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 finalize http upstream request: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 finalize http fastcgi request -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 free rr peer 1 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 close http upstream connection: 10 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 event timer del: 10: 542846243 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 reusable connection: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http upstream temp fd: -1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http output filter "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http copy filter: "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http chunk: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 write old buf t:1 f:0 00005719592474E8, pos 00005719592474E8, size: 181 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 write old buf t:1 f:0 00005719592477E0, pos 00005719592477E0, size: 4 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 write old buf t:1 f:0 0000571959248170, pos 0000571959248414, size: 141 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http write filter: l:1 f:0 s:333 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http write filter limit 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 writev: 333 of 333 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http write filter 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http copy filter: 0 "/upload?" -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 set http keepalive handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http close request -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http log handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 free: 0000571959248170 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 free: 000057195925F520, unused: 3 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 free: 0000571959255890, unused: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 free: 0000571959247160, unused: 1962 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 free: 00005719592400A0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 hc free: 0000000000000000 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 hc busy: 0000000000000000 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 tcp_nodelay -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 reusable connection: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 event timer add: 6: 65000:542851245 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 http keepalive handler -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 malloc: 00005719592400A0:1024 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 recv: eof:1, avail:-1 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 recv: fd:6 0 of 1024 -2025/09/07 19:51:25 [info] 1414245#1414245: *61 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 close http connection: 6 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 event timer del: 6: 542851245 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 reusable connection: 0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 free: 00005719592400A0 -2025/09/07 19:51:25 [debug] 1414245#1414245: *61 free: 000057195923D840, unused: 120 -2025/09/07 19:51:25 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:25 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:25 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:26 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 accept: 127.0.0.1:58308 fd:6 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 event timer add: 6: 60000:542846565 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 reusable connection: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 319 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http wait request handler -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 malloc: 00005719592400A0:1024 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 recv: eof:0, avail:-1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 recv: fd:6 754 of 1024 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 reusable connection: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http process request line -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http uri: "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http args: "" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http exten: "" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http process request header line -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http header: "Host: localhost:9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http header: "Accept: */*" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http header: "Authorization: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiIyODhkOTcxM2UzZDY5OWU0NzdiNmVlNGFiZWUzYzcwNzY4MzFkNjQ3NjQxZDZjY2FiYTNkYzVmMTM5MWRjMjNhIiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODYsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbIngiLCIwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwIl1dLCJjb250ZW50IjoiIiwic2lnIjoiNjUxMGJkM2YwNDRjMjEyZDNjYzdjNTdmYWE0NWUwNjBhODlhNjE1NmZiMGU3MzIxZjUwN2E2ZDFkMTJlYjE1ZjdmY2U2NzYyMTg3OTQyYTA5M2VjZDIzOGYyZTA0MDM0NzRhYzlhZDA1ZWVhMTllNjcyMGM5NDVlNzE1YmJkZDkifQ==" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http header: "Content-Type: text/plain" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http header: "Content-Length: 21" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http header done -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 event timer del: 6: 542846565 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 generic phase: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 rewrite phase: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 test location: "/health" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 test location: "/report" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 test location: "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 using configuration "=/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http cl:21 max:104857600 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 rewrite phase: 3 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "PUT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:26 [notice] 1414245#1414245: *63 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script if -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script if: false -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 post rewrite phase: 4 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 generic phase: 5 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 generic phase: 6 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 generic phase: 7 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 access phase: 8 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 access phase: 9 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 access phase: 10 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 post access phase: 11 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 generic phase: 12 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 generic phase: 13 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http client request body preread 21 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http request body content length filter -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http body new buf t:1 f:0 000057195924037D, pos 000057195924037D, size: 21 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http init upstream, client timer: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "QUERY_STRING" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "PUT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "text/plain" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "21" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "CONTENT_LENGTH: 21" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "REQUEST_URI" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "./blobs" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "HTTP/1.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "http" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "CGI/1.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "nginx/" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "1.18.0" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "127.0.0.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "REMOTE_PORT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "58308" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "REMOTE_PORT: 58308" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "SERVER_ADDR" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "127.0.0.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "SERVER_PORT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "SERVER_NAME" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "localhost" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "200" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script var: "./blobs" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiIyODhkOTcxM2UzZDY5OWU0NzdiNmVlNGFiZWUzYzcwNzY4MzFkNjQ3NjQxZDZjY2FiYTNkYzVmMTM5MWRjMjNhIiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODYsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbIngiLCIwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwIl1dLCJjb250ZW50IjoiIiwic2lnIjoiNjUxMGJkM2YwNDRjMjEyZDNjYzdjNTdmYWE0NWUwNjBhODlhNjE1NmZiMGU3MzIxZjUwN2E2ZDFkMTJlYjE1ZjdmY2U2NzYyMTg3OTQyYTA5M2VjZDIzOGYyZTA0MDM0NzRhYzlhZDA1ZWVhMTllNjcyMGM5NDVlNzE1YmJkZDkifQ==" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 fastcgi param: "HTTP_CONTENT_LENGTH: 21" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 posix_memalign: 0000571959247160:4096 @16 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http cleanup add: 0000571959247218 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 get rr peer, try: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 stream socket 10 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #64 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 connected -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream connect: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream send request -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream send request body -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 chain writer buf fl:0 s:1192 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 chain writer buf fl:0 s:21 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 chain writer buf fl:0 s:11 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 chain writer in: 0000571959247288 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 writev: 1224 of 1224 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 chain writer out: 0000000000000000 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 event timer add: 10: 60000:542846565 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http request count:2 blk:0 -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http run request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C8 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream dummy handler -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C8 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream process header -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 malloc: 0000571959248170:4096 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 recv: eof:0, avail:-1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 recv: fd:10 152 of 4096 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 07 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 8E -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 02 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record length: 142 -2025/09/07 19:51:26 [error] 1414245#1414245: *63 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:26] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:26] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 recv: eof:0, avail:0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream dummy handler -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C8 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream process header -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 recv: eof:0, avail:-1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 recv: fd:10 696 of 3944 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 07 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: B1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 07 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record length: 433 -2025/09/07 19:51:26 [error] 1414245#1414245: *63 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation -AUTH: pubkey extracted: '' -AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:26] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 07 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record length: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 06 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: C9 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 07 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record length: 201 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi parser: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi parser: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi parser: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi header done -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:26 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 write new buf t:1 f:0 0000571959247550, pos 0000571959247550, size: 181 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http cacheable: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream process upstream -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe read upstream: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe preread: 172 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe buf free s:0 t:1 f:0 0000571959248170, pos 0000571959248414, size: 172 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe length: -1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe write downstream: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe write busy: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe write: out:0000000000000000, f:0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe read upstream: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe buf free s:0 t:1 f:0 0000571959248170, pos 0000571959248414, size: 172 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe length: -1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 event timer: 10, old: 542846565, new: 542846567 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream dummy handler -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 59998 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C8 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream process upstream -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe read upstream: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 readv: eof:1, avail:-1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 readv: 1, last:3248 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe recv chain: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe buf free s:0 t:1 f:0 0000571959248170, pos 0000571959248414, size: 172 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe length: -1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 input buf #0 0000571959248414 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 06 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record length: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi closed stdout -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 03 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 08 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi record length: 8 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http fastcgi sent end request -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 input buf 0000571959248414 141 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe write downstream: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe write downstream flush in -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http output filter "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http copy filter: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http postpone filter "/upload?" 0000571959247258 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http chunk: 141 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 write old buf t:1 f:0 0000571959247550, pos 0000571959247550, size: 181 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 write new buf t:1 f:0 0000571959247848, pos 0000571959247848, size: 4 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 write new buf t:1 f:0 0000571959248170, pos 0000571959248414, size: 141 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http write filter: l:0 f:0 s:328 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http copy filter: 0 "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 pipe write downstream done -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 event timer: 10, old: 542846565, new: 542846567 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream exit: 0000000000000000 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 finalize http upstream request: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 finalize http fastcgi request -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 free rr peer 1 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 close http upstream connection: 10 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 event timer del: 10: 542846565 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 reusable connection: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http upstream temp fd: -1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http output filter "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http copy filter: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http chunk: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 write old buf t:1 f:0 0000571959247550, pos 0000571959247550, size: 181 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 write old buf t:1 f:0 0000571959247848, pos 0000571959247848, size: 4 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 write old buf t:1 f:0 0000571959248170, pos 0000571959248414, size: 141 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http write filter: l:1 f:0 s:333 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http write filter limit 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 writev: 333 of 333 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http write filter 0000000000000000 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http copy filter: 0 "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 set http keepalive handler -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http close request -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http log handler -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 free: 0000571959248170 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 free: 000057195925F520, unused: 3 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 free: 0000571959255890, unused: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 free: 0000571959247160, unused: 1858 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 free: 00005719592400A0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 hc free: 0000000000000000 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 hc busy: 0000000000000000 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 tcp_nodelay -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 reusable connection: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 event timer add: 6: 65000:542851567 -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 http keepalive handler -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 malloc: 00005719592400A0:1024 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 recv: eof:1, avail:-1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 recv: fd:6 0 of 1024 -2025/09/07 19:51:26 [info] 1414245#1414245: *63 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 close http connection: 6 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 event timer del: 6: 542851567 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 reusable connection: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 free: 00005719592400A0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *63 free: 000057195923D840, unused: 120 -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:26 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 accept: 127.0.0.1:58314 fd:6 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 event timer add: 6: 60000:542846841 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 reusable connection: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 273 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http wait request handler -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 malloc: 00005719592400A0:1024 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 recv: eof:0, avail:-1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 recv: fd:6 790 of 1024 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 reusable connection: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http process request line -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http uri: "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http args: "" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http exten: "" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http process request header line -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http header: "Host: localhost:9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http header: "Accept: */*" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http header: "Authorization: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiJiMGQwNDA1N2FmOWJhODlhNzJmMDY5NDBlMjgwYzVhMWI4YzlkMTIyZTc4YjY4ODYzZTgyZDk3MTRiYTViZWRmIiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODYsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbIngiLCI0MGNiYWQ4N2JhY2ZlZWU1ODI0NmJkOGM3NGM3NGJkYTU5ODdkNDA1NzQ3MTg4YzAxZTI0NzFlM2U0MzVlZGJiIl0sWyJleHBpcmF0aW9uIiwiMTc1NzI4NTQ4NiJdXSwiY29udGVudCI6IiIsInNpZyI6IjE0N2IzNzQxOGU4YjMyM2RiNDc3ZDJlYjdlODc5Y2U3NDNhMjcxNjg4YTQwMWZiY2QyYzQxMGEwODRmZTM4MjRlNmVhYTMxYjhhZjUyYjFmNTgzZmQ2YzljM2QwNTEzYzAzMTZiMDEyMGRjZjZjNzBmOWIyMzhkZWRiY2ZmNjU1In0=" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http header: "Content-Type: text/plain" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http header: "Content-Length: 21" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http header done -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 event timer del: 6: 542846841 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 generic phase: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 rewrite phase: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 test location: "/health" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 test location: "/report" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 test location: "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 using configuration "=/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http cl:21 max:104857600 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 rewrite phase: 3 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "PUT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:26 [notice] 1414245#1414245: *65 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script if -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script if: false -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 post rewrite phase: 4 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 generic phase: 5 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 generic phase: 6 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 generic phase: 7 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 access phase: 8 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 access phase: 9 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 access phase: 10 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 post access phase: 11 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 generic phase: 12 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 generic phase: 13 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http client request body preread 21 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http request body content length filter -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http body new buf t:1 f:0 00005719592403A1, pos 00005719592403A1, size: 21 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http init upstream, client timer: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "QUERY_STRING" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "PUT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "text/plain" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "21" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "CONTENT_LENGTH: 21" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "REQUEST_URI" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "./blobs" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "HTTP/1.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "http" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "CGI/1.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "nginx/" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "1.18.0" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "127.0.0.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "REMOTE_PORT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "58314" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "REMOTE_PORT: 58314" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "SERVER_ADDR" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "127.0.0.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "SERVER_PORT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "SERVER_NAME" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "localhost" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "200" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script var: "./blobs" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiJiMGQwNDA1N2FmOWJhODlhNzJmMDY5NDBlMjgwYzVhMWI4YzlkMTIyZTc4YjY4ODYzZTgyZDk3MTRiYTViZWRmIiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODYsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbIngiLCI0MGNiYWQ4N2JhY2ZlZWU1ODI0NmJkOGM3NGM3NGJkYTU5ODdkNDA1NzQ3MTg4YzAxZTI0NzFlM2U0MzVlZGJiIl0sWyJleHBpcmF0aW9uIiwiMTc1NzI4NTQ4NiJdXSwiY29udGVudCI6IiIsInNpZyI6IjE0N2IzNzQxOGU4YjMyM2RiNDc3ZDJlYjdlODc5Y2U3NDNhMjcxNjg4YTQwMWZiY2QyYzQxMGEwODRmZTM4MjRlNmVhYTMxYjhhZjUyYjFmNTgzZmQ2YzljM2QwNTEzYzAzMTZiMDEyMGRjZjZjNzBmOWIyMzhkZWRiY2ZmNjU1In0=" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 fastcgi param: "HTTP_CONTENT_LENGTH: 21" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 posix_memalign: 0000571959247160:4096 @16 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http cleanup add: 0000571959247240 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 get rr peer, try: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 stream socket 10 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #66 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 connected -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream connect: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream send request -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream send request body -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 chain writer buf fl:0 s:1224 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 chain writer buf fl:0 s:21 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 chain writer buf fl:0 s:11 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 chain writer in: 00005719592472B0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 writev: 1256 of 1256 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 chain writer out: 0000000000000000 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 event timer add: 10: 60000:542846841 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http request count:2 blk:0 -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http run request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C9 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream dummy handler -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C9 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream process header -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 malloc: 0000571959248170:4096 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 recv: eof:0, avail:-1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 recv: fd:10 152 of 4096 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 07 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 8E -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 02 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record length: 142 -2025/09/07 19:51:26 [error] 1414245#1414245: *65 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:26] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:26] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 recv: eof:0, avail:0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream dummy handler -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C9 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream process header -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 recv: eof:0, avail:-1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 recv: fd:10 696 of 3944 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 07 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: B1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 07 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record length: 433 -2025/09/07 19:51:26 [error] 1414245#1414245: *65 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: Blossom event does not authorize this operation -AUTH: pubkey extracted: '' -AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:26] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 07 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record length: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 06 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: C9 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 07 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record length: 201 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi parser: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi parser: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi parser: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi header done -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:26 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 write new buf t:1 f:0 0000571959247578, pos 0000571959247578, size: 181 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http cacheable: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream process upstream -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe read upstream: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe preread: 172 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe buf free s:0 t:1 f:0 0000571959248170, pos 0000571959248414, size: 172 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe length: -1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe write downstream: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe write busy: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe write: out:0000000000000000, f:0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe read upstream: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe buf free s:0 t:1 f:0 0000571959248170, pos 0000571959248414, size: 172 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe length: -1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 event timer: 10, old: 542846841, new: 542846842 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream dummy handler -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C9 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream process upstream -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe read upstream: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 readv: eof:1, avail:-1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 readv: 1, last:3248 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe recv chain: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe buf free s:0 t:1 f:0 0000571959248170, pos 0000571959248414, size: 172 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe length: -1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 input buf #0 0000571959248414 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 06 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record length: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi closed stdout -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 03 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 08 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi record length: 8 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http fastcgi sent end request -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 input buf 0000571959248414 141 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe write downstream: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe write downstream flush in -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http output filter "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http copy filter: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http postpone filter "/upload?" 0000571959247280 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http chunk: 141 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 write old buf t:1 f:0 0000571959247578, pos 0000571959247578, size: 181 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 write new buf t:1 f:0 0000571959247870, pos 0000571959247870, size: 4 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 write new buf t:1 f:0 0000571959248170, pos 0000571959248414, size: 141 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http write filter: l:0 f:0 s:328 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http copy filter: 0 "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 pipe write downstream done -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 event timer: 10, old: 542846841, new: 542846842 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream exit: 0000000000000000 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 finalize http upstream request: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 finalize http fastcgi request -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 free rr peer 1 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 close http upstream connection: 10 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 event timer del: 10: 542846841 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 reusable connection: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http upstream temp fd: -1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http output filter "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http copy filter: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http chunk: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 write old buf t:1 f:0 0000571959247578, pos 0000571959247578, size: 181 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 write old buf t:1 f:0 0000571959247870, pos 0000571959247870, size: 4 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 write old buf t:1 f:0 0000571959248170, pos 0000571959248414, size: 141 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http write filter: l:1 f:0 s:333 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http write filter limit 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 writev: 333 of 333 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http write filter 0000000000000000 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http copy filter: 0 "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 set http keepalive handler -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http close request -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http log handler -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 free: 0000571959248170 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 free: 000057195925F520, unused: 3 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 free: 0000571959255890, unused: 8 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 free: 0000571959247160, unused: 1818 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 free: 00005719592400A0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 hc free: 0000000000000000 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 hc busy: 0000000000000000 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 tcp_nodelay -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 reusable connection: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 event timer add: 6: 65000:542851842 -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 http keepalive handler -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 malloc: 00005719592400A0:1024 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 recv: eof:1, avail:-1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 recv: fd:6 0 of 1024 -2025/09/07 19:51:26 [info] 1414245#1414245: *65 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 close http connection: 6 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 event timer del: 6: 542851842 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 reusable connection: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 free: 00005719592400A0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *65 free: 000057195923D840, unused: 120 -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:26 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 accept: 127.0.0.1:58326 fd:6 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 event timer add: 6: 60000:542847103 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 reusable connection: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 261 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http wait request handler -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 malloc: 00005719592400A0:1024 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 recv: eof:0, avail:-1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 recv: fd:6 754 of 1024 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 reusable connection: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http process request line -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http uri: "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http args: "" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http exten: "" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http process request header line -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http header: "Host: localhost:9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http header: "Accept: */*" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http header: "Authorization: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiIzOThlMDlhODhjYTA0NDdiYzI4ZDQ5MWI0NTM0NWE1OTViZTczMzg4Nzc2NThiMWI5YjEwZWU4NWU1ZjhlY2M1IiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODYsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbIngiLCJlYTAyNTk2Y2RiZWJlZWIzMjk0MWE2YmU3MTVmZDZjMGJjYmM4MTRkODcyY2FlODI5MjA5NGZjZGM4ODI2MTE0Il1dLCJjb250ZW50IjoiIiwic2lnIjoiNzEwYzkyMTNlZGY0ZGFhMGFiMDJlOTk3NjdmY2JmMjllNWNjMzU0NWU4NTY4NTEwNWU2ZjA4Y2I2NzQ0MWU2YjNhODhlZTVkNTE5YWJiYWQ0ZDg2ZWQzZTRiNGQyMzk4MjFlZTkxODZkOGY1MzZlZGEzOTExY2Q5NzQ5Mzg4NjAieA==" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http header: "Content-Type: text/plain" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http header: "Content-Length: 21" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http header done -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 event timer del: 6: 542847103 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 generic phase: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 rewrite phase: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 test location: "/health" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 test location: "/report" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 test location: "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 using configuration "=/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http cl:21 max:104857600 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 rewrite phase: 3 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "PUT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:26 [notice] 1414245#1414245: *67 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script if -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script if: false -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 post rewrite phase: 4 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 generic phase: 5 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 generic phase: 6 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 generic phase: 7 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 access phase: 8 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 access phase: 9 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 access phase: 10 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 post access phase: 11 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 generic phase: 12 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 generic phase: 13 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http client request body preread 21 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http request body content length filter -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http body new buf t:1 f:0 000057195924037D, pos 000057195924037D, size: 21 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http init upstream, client timer: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "QUERY_STRING" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "PUT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "text/plain" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "21" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "CONTENT_LENGTH: 21" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "REQUEST_URI" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "./blobs" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "HTTP/1.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "http" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "CGI/1.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "nginx/" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "1.18.0" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "127.0.0.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "REMOTE_PORT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "58326" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "REMOTE_PORT: 58326" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "SERVER_ADDR" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "127.0.0.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "SERVER_PORT" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "SERVER_NAME" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "localhost" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "200" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script var: "./blobs" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiIzOThlMDlhODhjYTA0NDdiYzI4ZDQ5MWI0NTM0NWE1OTViZTczMzg4Nzc2NThiMWI5YjEwZWU4NWU1ZjhlY2M1IiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODYsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbIngiLCJlYTAyNTk2Y2RiZWJlZWIzMjk0MWE2YmU3MTVmZDZjMGJjYmM4MTRkODcyY2FlODI5MjA5NGZjZGM4ODI2MTE0Il1dLCJjb250ZW50IjoiIiwic2lnIjoiNzEwYzkyMTNlZGY0ZGFhMGFiMDJlOTk3NjdmY2JmMjllNWNjMzU0NWU4NTY4NTEwNWU2ZjA4Y2I2NzQ0MWU2YjNhODhlZTVkNTE5YWJiYWQ0ZDg2ZWQzZTRiNGQyMzk4MjFlZTkxODZkOGY1MzZlZGEzOTExY2Q5NzQ5Mzg4NjAieA==" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 fastcgi param: "HTTP_CONTENT_LENGTH: 21" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 posix_memalign: 0000571959247160:4096 @16 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http cleanup add: 0000571959247218 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 get rr peer, try: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 stream socket 10 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #68 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 connected -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream connect: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream send request -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream send request body -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 chain writer buf fl:0 s:1192 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 chain writer buf fl:0 s:21 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 chain writer buf fl:0 s:11 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 chain writer in: 0000571959247288 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 writev: 1224 of 1224 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 chain writer out: 0000000000000000 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 event timer add: 10: 60000:542847103 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http request count:2 blk:0 -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http run request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C8 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream dummy handler -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C8 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream process header -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 malloc: 0000571959248170:4096 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 recv: eof:0, avail:-1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 recv: fd:10 152 of 4096 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 07 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 8E -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 02 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record length: 142 -2025/09/07 19:51:26 [error] 1414245#1414245: *67 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:26] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:26] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 recv: eof:0, avail:0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream dummy handler -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C8 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream process header -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 recv: eof:0, avail:-1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 recv: fd:10 648 of 3944 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 07 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 9F -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record length: 415 -2025/09/07 19:51:26 [error] 1414245#1414245: *67 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: Invalid JSON in authorization -AUTH: pubkey extracted: '' -AUTH: resource_hash: 'a6c3dfd8af9c4b831fdb05a523a3ea398ba48b5d7213b0adb264aef88fd6bc68' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:26] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 07 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record length: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 06 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: B7 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record length: 183 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi parser: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi parser: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi parser: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi header done -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:26 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 write new buf t:1 f:0 0000571959247550, pos 0000571959247550, size: 181 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http cacheable: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream process upstream -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe read upstream: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe preread: 148 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe buf free s:0 t:1 f:0 0000571959248170, pos 00005719592483FC, size: 148 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe length: -1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe write downstream: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe write busy: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe write: out:0000000000000000, f:0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe read upstream: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe buf free s:0 t:1 f:0 0000571959248170, pos 00005719592483FC, size: 148 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe length: -1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 event timer: 10, old: 542847103, new: 542847104 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream dummy handler -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C8 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream request: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream process upstream -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe read upstream: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 readv: eof:1, avail:-1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 readv: 1, last:3296 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe recv chain: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe buf free s:0 t:1 f:0 0000571959248170, pos 00005719592483FC, size: 148 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe length: -1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 input buf #0 00005719592483FC -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 06 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record length: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi closed stdout -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 03 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 01 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 08 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record byte: 00 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi record length: 8 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http fastcgi sent end request -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 input buf 00005719592483FC 123 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe write downstream: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe write downstream flush in -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http output filter "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http copy filter: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http postpone filter "/upload?" 0000571959247258 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http chunk: 123 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 write old buf t:1 f:0 0000571959247550, pos 0000571959247550, size: 181 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 write new buf t:1 f:0 0000571959247848, pos 0000571959247848, size: 4 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 write new buf t:1 f:0 0000571959248170, pos 00005719592483FC, size: 123 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http write filter: l:0 f:0 s:310 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http copy filter: 0 "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 pipe write downstream done -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 event timer: 10, old: 542847103, new: 542847104 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream exit: 0000000000000000 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 finalize http upstream request: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 finalize http fastcgi request -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 free rr peer 1 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 close http upstream connection: 10 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 event timer del: 10: 542847103 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 reusable connection: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http upstream temp fd: -1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http output filter "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http copy filter: "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http chunk: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 write old buf t:1 f:0 0000571959247550, pos 0000571959247550, size: 181 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 write old buf t:1 f:0 0000571959247848, pos 0000571959247848, size: 4 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 write old buf t:1 f:0 0000571959248170, pos 00005719592483FC, size: 123 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http write filter: l:1 f:0 s:315 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http write filter limit 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 writev: 315 of 315 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http write filter 0000000000000000 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http copy filter: 0 "/upload?" -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 set http keepalive handler -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http close request -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http log handler -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 free: 0000571959248170 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 free: 000057195925F520, unused: 3 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 free: 0000571959255890, unused: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 free: 0000571959247160, unused: 1858 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 free: 00005719592400A0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 hc free: 0000000000000000 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 hc busy: 0000000000000000 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 tcp_nodelay -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 reusable connection: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 event timer add: 6: 65000:542852104 -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 http keepalive handler -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 malloc: 00005719592400A0:1024 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 recv: eof:1, avail:-1 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 recv: fd:6 0 of 1024 -2025/09/07 19:51:26 [info] 1414245#1414245: *67 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 close http connection: 6 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 event timer del: 6: 542852104 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 reusable connection: 0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 free: 00005719592400A0 -2025/09/07 19:51:26 [debug] 1414245#1414245: *67 free: 000057195923D840, unused: 120 -2025/09/07 19:51:26 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:26 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:26 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:27 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 accept: 127.0.0.1:58338 fd:6 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 event timer add: 6: 60000:542847732 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 reusable connection: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 627 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http wait request handler -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 malloc: 00005719592400A0:1024 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 recv: eof:0, avail:-1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 recv: fd:6 82 of 1024 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 reusable connection: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http process request line -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http request line: "GET /auth HTTP/1.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http uri: "/auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http args: "" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http exten: "" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http process request header line -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http header: "Host: localhost:9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http header: "Accept: */*" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http header done -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 event timer del: 6: 542847732 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 generic phase: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 rewrite phase: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 test location: "/health" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 test location: "/auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 using configuration "=/auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http cl:-1 max:104857600 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 rewrite phase: 3 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var: "GET" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script regex: "^(GET|OPTIONS)$" -2025/09/07 19:51:27 [notice] 1414245#1414245: *69 "^(GET|OPTIONS)$" matches "GET", client: 127.0.0.1, server: localhost, request: "GET /auth HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script if -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script if: false -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var: "GET" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script value: "OPTIONS" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script equal -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script equal: no -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script if -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script if: false -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 post rewrite phase: 4 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 generic phase: 5 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 generic phase: 6 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 generic phase: 7 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 access phase: 8 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 access phase: 9 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 access phase: 10 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 post access phase: 11 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 generic phase: 12 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 generic phase: 13 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http init upstream, client timer: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "QUERY_STRING" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var: "GET" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "REQUEST_METHOD: GET" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "CONTENT_TYPE: " -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "CONTENT_LENGTH: " -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var: "/auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "SCRIPT_NAME: /auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "REQUEST_URI" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var: "/auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "REQUEST_URI: /auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var: "/auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "DOCUMENT_URI: /auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var: "./blobs" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var: "HTTP/1.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var: "http" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "CGI/1.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "nginx/" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var: "1.18.0" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var: "127.0.0.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "REMOTE_PORT" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var: "58338" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "REMOTE_PORT: 58338" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "SERVER_ADDR" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var: "127.0.0.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "SERVER_PORT" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var: "9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "SERVER_NAME" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var: "localhost" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "200" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script var: "./blobs" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http cleanup add: 0000571959256520 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 get rr peer, try: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 stream socket 10 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #70 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 connected -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http upstream connect: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http upstream send request -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http upstream send request body -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 chain writer buf fl:0 s:512 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 chain writer in: 0000571959256560 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 writev: 512 of 512 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 chain writer out: 0000000000000000 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 event timer add: 10: 60000:542847733 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http finalize request: -4, "/auth?" a:1, c:2 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http request count:2 blk:0 -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http run request: "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http upstream check client, write event:1, "/auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C9 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http upstream request: "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http upstream dummy handler -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C9 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http upstream request: "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http upstream process header -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 malloc: 0000571959247160:4096 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 recv: eof:0, avail:-1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 recv: fd:10 536 of 4096 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 07 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 9C -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 04 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record length: 156 -2025/09/07 19:51:27 [error] 1414245#1414245: *69 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:27] GET /auth - Auth: challenge_request - Status: 0 -LOG: [2025-09-07 19:51:27] GET /auth - Auth: challenge_generated - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "GET /auth HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 07 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record length: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 06 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 44 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 04 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record length: 324 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi parser: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi header: "Status: 200 OK" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi parser: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi parser: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi header: "Access-Control-Allow-Origin: *" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi parser: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi header: "Access-Control-Allow-Methods: GET, POST, OPTIONS" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi parser: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi header: "Access-Control-Allow-Headers: Content-Type, Authorization" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi parser: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi header done -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 posix_memalign: 0000571959248170:4096 @16 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:27 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -Access-Control-Allow-Origin: * -Access-Control-Allow-Methods: GET, POST, OPTIONS -Access-Control-Allow-Headers: Content-Type, Authorization -Access-Control-Allow-Origin: * -Access-Control-Allow-Methods: GET, OPTIONS -Access-Control-Allow-Headers: Content-Type, Authorization - -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 write new buf t:1 f:0 00005719592481E0, pos 00005719592481E0, size: 447 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http write filter: l:0 f:0 s:447 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http cacheable: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http upstream process upstream -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe read upstream: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe preread: 161 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe buf free s:0 t:1 f:0 0000571959247160, pos 00005719592472D7, size: 161 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe length: -1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe write downstream: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe write busy: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe write: out:0000000000000000, f:0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe read upstream: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe buf free s:0 t:1 f:0 0000571959247160, pos 00005719592472D7, size: 161 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe length: -1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 event timer: 10, old: 542847733, new: 542847736 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http upstream request: "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http upstream dummy handler -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 3 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: 59997 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C9 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http upstream request: "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http upstream process upstream -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe read upstream: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 readv: eof:1, avail:-1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 readv: 1, last:3560 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe recv chain: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe buf free s:0 t:1 f:0 0000571959247160, pos 00005719592472D7, size: 161 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe length: -1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 input buf #0 00005719592472D7 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 06 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record length: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi closed stdout -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 03 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 08 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi record length: 8 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http fastcgi sent end request -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 input buf 00005719592472D7 133 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe write downstream: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe write downstream flush in -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http output filter "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http copy filter: "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http postpone filter "/auth?" 00005719592484C8 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http chunk: 133 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 write old buf t:1 f:0 00005719592481E0, pos 00005719592481E0, size: 447 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 write new buf t:1 f:0 0000571959248620, pos 0000571959248620, size: 4 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 write new buf t:1 f:0 0000571959247160, pos 00005719592472D7, size: 133 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http write filter: l:0 f:0 s:586 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http copy filter: 0 "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 pipe write downstream done -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 event timer: 10, old: 542847733, new: 542847737 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http upstream exit: 0000000000000000 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 finalize http upstream request: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 finalize http fastcgi request -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 free rr peer 1 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 close http upstream connection: 10 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 event timer del: 10: 542847733 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 reusable connection: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http upstream temp fd: -1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http output filter "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http copy filter: "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http postpone filter "/auth?" 00007FFE2F6E8080 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http chunk: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 write old buf t:1 f:0 00005719592481E0, pos 00005719592481E0, size: 447 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 write old buf t:1 f:0 0000571959248620, pos 0000571959248620, size: 4 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 write old buf t:1 f:0 0000571959247160, pos 00005719592472D7, size: 133 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http write filter: l:1 f:0 s:591 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http write filter limit 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 writev: 591 of 591 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http write filter 0000000000000000 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http copy filter: 0 "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http finalize request: 0, "/auth?" a:1, c:1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 set http keepalive handler -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http close request -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http log handler -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 free: 0000571959247160 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 free: 000057195925F520, unused: 8 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 free: 0000571959255890, unused: 8 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 free: 0000571959248170, unused: 2412 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 free: 00005719592400A0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 hc free: 0000000000000000 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 hc busy: 0000000000000000 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 tcp_nodelay -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 reusable connection: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 event timer add: 6: 65000:542852737 -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 http keepalive handler -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 malloc: 00005719592400A0:1024 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 recv: eof:1, avail:-1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 recv: fd:6 0 of 1024 -2025/09/07 19:51:27 [info] 1414245#1414245: *69 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 close http connection: 6 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 event timer del: 6: 542852737 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 reusable connection: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 free: 00005719592400A0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *69 free: 000057195923D840, unused: 120 -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:27 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 accept: 127.0.0.1:58352 fd:6 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 event timer add: 6: 60000:542847777 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 reusable connection: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 40 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http wait request handler -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 malloc: 00005719592400A0:1024 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 recv: eof:0, avail:-1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 recv: fd:6 82 of 1024 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 reusable connection: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http process request line -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http request line: "GET /auth HTTP/1.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http uri: "/auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http args: "" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http exten: "" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http process request header line -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http header: "Host: localhost:9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http header: "Accept: */*" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http header done -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 event timer del: 6: 542847777 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 generic phase: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 rewrite phase: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 test location: "/health" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 test location: "/auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 using configuration "=/auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http cl:-1 max:104857600 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 rewrite phase: 3 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var: "GET" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script regex: "^(GET|OPTIONS)$" -2025/09/07 19:51:27 [notice] 1414245#1414245: *71 "^(GET|OPTIONS)$" matches "GET", client: 127.0.0.1, server: localhost, request: "GET /auth HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script if -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script if: false -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var: "GET" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script value: "OPTIONS" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script equal -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script equal: no -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script if -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script if: false -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 post rewrite phase: 4 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 generic phase: 5 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 generic phase: 6 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 generic phase: 7 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 access phase: 8 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 access phase: 9 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 access phase: 10 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 post access phase: 11 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 generic phase: 12 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 generic phase: 13 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http init upstream, client timer: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "QUERY_STRING" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var: "GET" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "REQUEST_METHOD: GET" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "CONTENT_TYPE: " -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "CONTENT_LENGTH: " -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var: "/auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "SCRIPT_NAME: /auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "REQUEST_URI" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var: "/auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "REQUEST_URI: /auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var: "/auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "DOCUMENT_URI: /auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var: "./blobs" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var: "HTTP/1.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var: "http" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "CGI/1.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "nginx/" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var: "1.18.0" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var: "127.0.0.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "REMOTE_PORT" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var: "58352" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "REMOTE_PORT: 58352" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "SERVER_ADDR" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var: "127.0.0.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "SERVER_PORT" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var: "9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "SERVER_NAME" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var: "localhost" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "200" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script var: "./blobs" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http cleanup add: 0000571959256520 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 get rr peer, try: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 stream socket 10 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #72 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 connected -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http upstream connect: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http upstream send request -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http upstream send request body -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 chain writer buf fl:0 s:512 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 chain writer in: 0000571959256560 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 writev: 512 of 512 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 chain writer out: 0000000000000000 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 event timer add: 10: 60000:542847777 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http finalize request: -4, "/auth?" a:1, c:2 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http request count:2 blk:0 -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http run request: "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http upstream check client, write event:1, "/auth" -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C8 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http upstream request: "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http upstream dummy handler -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C8 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http upstream request: "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http upstream process header -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 malloc: 0000571959247160:4096 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 recv: eof:1, avail:-1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 recv: fd:10 536 of 4096 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 07 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 9C -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 04 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record length: 156 -2025/09/07 19:51:27 [error] 1414245#1414245: *71 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:27] GET /auth - Auth: challenge_request - Status: 0 -LOG: [2025-09-07 19:51:27] GET /auth - Auth: challenge_generated - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "GET /auth HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 07 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record length: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 06 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 44 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 04 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record length: 324 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi parser: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi header: "Status: 200 OK" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi parser: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi parser: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi header: "Access-Control-Allow-Origin: *" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi parser: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi header: "Access-Control-Allow-Methods: GET, POST, OPTIONS" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi parser: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi header: "Access-Control-Allow-Headers: Content-Type, Authorization" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi parser: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi header done -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 posix_memalign: 0000571959248170:4096 @16 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:27 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -Access-Control-Allow-Origin: * -Access-Control-Allow-Methods: GET, POST, OPTIONS -Access-Control-Allow-Headers: Content-Type, Authorization -Access-Control-Allow-Origin: * -Access-Control-Allow-Methods: GET, OPTIONS -Access-Control-Allow-Headers: Content-Type, Authorization - -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 write new buf t:1 f:0 00005719592481E0, pos 00005719592481E0, size: 447 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http write filter: l:0 f:0 s:447 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http cacheable: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http upstream process upstream -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 pipe read upstream: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 pipe preread: 161 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 readv: eof:1, avail:0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 readv: 1, last:3560 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 pipe recv chain: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 pipe buf free s:0 t:1 f:0 0000571959247160, pos 00005719592472D7, size: 161 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 pipe length: -1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 input buf #0 00005719592472D7 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 06 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record length: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi closed stdout -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 03 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 08 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi record length: 8 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http fastcgi sent end request -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 input buf 00005719592472D7 133 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 pipe write downstream: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 pipe write downstream flush in -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http output filter "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http copy filter: "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http postpone filter "/auth?" 00005719592484C8 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http chunk: 133 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 write old buf t:1 f:0 00005719592481E0, pos 00005719592481E0, size: 447 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 write new buf t:1 f:0 0000571959248620, pos 0000571959248620, size: 4 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 write new buf t:1 f:0 0000571959247160, pos 00005719592472D7, size: 133 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http write filter: l:0 f:0 s:586 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http copy filter: 0 "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 pipe write downstream done -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 event timer: 10, old: 542847777, new: 542847781 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http upstream exit: 0000000000000000 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 finalize http upstream request: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 finalize http fastcgi request -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 free rr peer 1 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 close http upstream connection: 10 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 event timer del: 10: 542847777 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 reusable connection: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http upstream temp fd: -1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http output filter "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http copy filter: "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http postpone filter "/auth?" 00007FFE2F6E8080 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http chunk: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 write old buf t:1 f:0 00005719592481E0, pos 00005719592481E0, size: 447 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 write old buf t:1 f:0 0000571959248620, pos 0000571959248620, size: 4 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 write old buf t:1 f:0 0000571959247160, pos 00005719592472D7, size: 133 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http write filter: l:1 f:0 s:591 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http write filter limit 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 writev: 591 of 591 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http write filter 0000000000000000 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http copy filter: 0 "/auth?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http finalize request: 0, "/auth?" a:1, c:1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 set http keepalive handler -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http close request -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http log handler -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 free: 0000571959247160 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 free: 000057195925F520, unused: 8 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 free: 0000571959255890, unused: 8 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 free: 0000571959248170, unused: 2412 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 free: 00005719592400A0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 hc free: 0000000000000000 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 hc busy: 0000000000000000 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 tcp_nodelay -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 reusable connection: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 event timer add: 6: 65000:542852781 -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 3 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 http keepalive handler -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 malloc: 00005719592400A0:1024 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 recv: eof:1, avail:-1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 recv: fd:6 0 of 1024 -2025/09/07 19:51:27 [info] 1414245#1414245: *71 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 close http connection: 6 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 event timer del: 6: 542852781 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 reusable connection: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 free: 00005719592400A0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *71 free: 000057195923D840, unused: 120 -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:27 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 accept: 127.0.0.1:58368 fd:6 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 event timer add: 6: 60000:542848099 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 reusable connection: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 317 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http wait request handler -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 malloc: 00005719592400A0:1024 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 recv: eof:0, avail:-1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 recv: fd:6 800 of 1024 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 reusable connection: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http process request line -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http uri: "/upload" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http args: "" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http exten: "" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http process request header line -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http header: "Host: localhost:9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http header: "Accept: */*" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http header: "Authorization: Nostr eyJraW5kIjoyMjI0MiwiaWQiOiIwN2U2NjRjM2E0YWU3NTYwMzhkYjg2NjY3NDUzZjdiYTdiZjA4ZTA5MmNjYTkwMDUyZTY5MTAyYjI2NjE4MWY2IiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODcsInRhZ3MiOltbInJlbGF5Iiwid3M6Ly9sb2NhbGhvc3Q6OTAwMSJdLFsiY2hhbGxlbmdlIiwiM2ZiNmEwZWExZDMzN2JkMDlmMWY4OGY2NWYxMjQxNzRhZDcxNjFkZDVlYTBmYWU3NGMwZGQwYjBkYjQzYTI0ZSJdXSwiY29udGVudCI6IiIsInNpZyI6ImQwMzA1YmY5ZDg3YTI5NTQxYWIyMTNlZWMyOWEzZjUwZDVkNTczM2MwMmZjYjFhZmUzYTg3Njc1ZTI4Zjg4NWY1ODM4YjhiZTRjMTM0YjAxOTRjOGVmY2EwMThmZDdlOTljMjNlMDgxYzE3NDdhZWYxZWNkMjA5YzIxYWFlMWIzIn0K" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http header: "Content-Type: text/plain" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http header: "Content-Length: 35" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http header done -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 event timer del: 6: 542848099 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 generic phase: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 rewrite phase: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 test location: "/health" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 test location: "/report" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 test location: "/upload" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 using configuration "=/upload" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http cl:35 max:104857600 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 rewrite phase: 3 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "PUT" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:27 [notice] 1414245#1414245: *73 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script if -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script if: false -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 post rewrite phase: 4 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 generic phase: 5 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 generic phase: 6 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 generic phase: 7 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 access phase: 8 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 access phase: 9 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 access phase: 10 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 post access phase: 11 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 generic phase: 12 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 generic phase: 13 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http client request body preread 35 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http request body content length filter -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http body new buf t:1 f:0 000057195924039D, pos 000057195924039D, size: 35 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http init upstream, client timer: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "QUERY_STRING" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "PUT" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "text/plain" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "35" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "CONTENT_LENGTH: 35" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "/upload" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "REQUEST_URI" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "/upload" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "/upload" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "./blobs" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "HTTP/1.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "http" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "CGI/1.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "nginx/" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "1.18.0" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "127.0.0.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "REMOTE_PORT" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "58368" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "REMOTE_PORT: 58368" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "SERVER_ADDR" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "127.0.0.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "SERVER_PORT" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "SERVER_NAME" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "localhost" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "200" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script var: "./blobs" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyMjI0MiwiaWQiOiIwN2U2NjRjM2E0YWU3NTYwMzhkYjg2NjY3NDUzZjdiYTdiZjA4ZTA5MmNjYTkwMDUyZTY5MTAyYjI2NjE4MWY2IiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODkwODcsInRhZ3MiOltbInJlbGF5Iiwid3M6Ly9sb2NhbGhvc3Q6OTAwMSJdLFsiY2hhbGxlbmdlIiwiM2ZiNmEwZWExZDMzN2JkMDlmMWY4OGY2NWYxMjQxNzRhZDcxNjFkZDVlYTBmYWU3NGMwZGQwYjBkYjQzYTI0ZSJdXSwiY29udGVudCI6IiIsInNpZyI6ImQwMzA1YmY5ZDg3YTI5NTQxYWIyMTNlZWMyOWEzZjUwZDVkNTczM2MwMmZjYjFhZmUzYTg3Njc1ZTI4Zjg4NWY1ODM4YjhiZTRjMTM0YjAxOTRjOGVmY2EwMThmZDdlOTljMjNlMDgxYzE3NDdhZWYxZWNkMjA5YzIxYWFlMWIzIn0K" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 fastcgi param: "HTTP_CONTENT_LENGTH: 35" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 posix_memalign: 0000571959247160:4096 @16 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http cleanup add: 0000571959247240 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 get rr peer, try: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 stream socket 10 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #74 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 connected -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http upstream connect: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http upstream send request -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http upstream send request body -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 chain writer buf fl:0 s:1224 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 chain writer buf fl:0 s:35 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 chain writer buf fl:0 s:13 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 chain writer in: 00005719592472B0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 writev: 1272 of 1272 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 chain writer out: 0000000000000000 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 event timer add: 10: 60000:542848099 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http request count:2 blk:0 -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http run request: "/upload?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C9 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http upstream request: "/upload?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http upstream dummy handler -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C9 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http upstream request: "/upload?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http upstream process header -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 malloc: 0000571959248170:4096 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 recv: eof:0, avail:-1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 recv: fd:10 152 of 4096 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 07 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 8E -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 02 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record length: 142 -2025/09/07 19:51:27 [error] 1414245#1414245: *73 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:27] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:27] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 recv: eof:0, avail:0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http upstream request: "/upload?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http upstream dummy handler -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C9 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http upstream request: "/upload?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http upstream process header -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 recv: eof:1, avail:-1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 recv: fd:10 712 of 3944 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 07 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: BB -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 05 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record length: 443 -2025/09/07 19:51:27 [error] 1414245#1414245: *73 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: NIP-42 authentication requires relay_url and challenge_id -AUTH: pubkey extracted: '' -AUTH: resource_hash: 'ab0bf82111fa362282601efffd2b09f42270aaefa57afd05feda24b757950c27' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:27] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 07 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record length: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 06 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: D3 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 05 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record length: 211 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi parser: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi parser: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi parser: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi header done -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:27 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 write new buf t:1 f:0 0000571959247578, pos 0000571959247578, size: 181 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http cacheable: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http upstream process upstream -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 pipe read upstream: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 pipe preread: 180 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 readv: eof:1, avail:0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 readv: 1, last:3232 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 pipe recv chain: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 pipe buf free s:0 t:1 f:0 0000571959248170, pos 000057195924841C, size: 180 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 pipe length: -1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 input buf #0 000057195924841C -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 06 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record length: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi closed stdout -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 03 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 01 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 08 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record byte: 00 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi record length: 8 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http fastcgi sent end request -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 input buf 000057195924841C 151 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 pipe write downstream: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 pipe write downstream flush in -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http output filter "/upload?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http copy filter: "/upload?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http postpone filter "/upload?" 0000571959247280 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http chunk: 151 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 write old buf t:1 f:0 0000571959247578, pos 0000571959247578, size: 181 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 write new buf t:1 f:0 0000571959247870, pos 0000571959247870, size: 4 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 write new buf t:1 f:0 0000571959248170, pos 000057195924841C, size: 151 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http write filter: l:0 f:0 s:338 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http copy filter: 0 "/upload?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 pipe write downstream done -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 event timer: 10, old: 542848099, new: 542848100 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http upstream exit: 0000000000000000 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 finalize http upstream request: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 finalize http fastcgi request -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 free rr peer 1 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 close http upstream connection: 10 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 event timer del: 10: 542848099 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 reusable connection: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http upstream temp fd: -1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http output filter "/upload?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http copy filter: "/upload?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http chunk: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 write old buf t:1 f:0 0000571959247578, pos 0000571959247578, size: 181 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 write old buf t:1 f:0 0000571959247870, pos 0000571959247870, size: 4 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 write old buf t:1 f:0 0000571959248170, pos 000057195924841C, size: 151 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http write filter: l:1 f:0 s:343 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http write filter limit 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 writev: 343 of 343 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http write filter 0000000000000000 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http copy filter: 0 "/upload?" -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 set http keepalive handler -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http close request -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http log handler -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 free: 0000571959248170 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 free: 000057195925F520, unused: 3 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 free: 0000571959255890, unused: 8 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 free: 0000571959247160, unused: 1818 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 free: 00005719592400A0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 hc free: 0000000000000000 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 hc busy: 0000000000000000 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 tcp_nodelay -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 reusable connection: 1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 event timer add: 6: 65000:542853100 -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 http keepalive handler -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 malloc: 00005719592400A0:1024 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 recv: eof:1, avail:-1 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 recv: fd:6 0 of 1024 -2025/09/07 19:51:27 [info] 1414245#1414245: *73 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 close http connection: 6 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 event timer del: 6: 542853100 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 reusable connection: 0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 free: 00005719592400A0 -2025/09/07 19:51:27 [debug] 1414245#1414245: *73 free: 000057195923D840, unused: 120 -2025/09/07 19:51:27 [debug] 1414245#1414245: timer delta: 2 -2025/09/07 19:51:27 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:27 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:51:54 [debug] 1414245#1414245: epoll: fd:5 ev:0001 d:0000741FB4FC5010 -2025/09/07 19:51:54 [debug] 1414245#1414245: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: posix_memalign: 000057195923D840:512 @16 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 accept: 127.0.0.1:54220 fd:6 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 event timer add: 6: 60000:542875089 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 reusable connection: 1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 19:51:54 [debug] 1414245#1414245: timer delta: 26987 -2025/09/07 19:51:54 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:54 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:54 [debug] 1414245#1414245: epoll: fd:6 ev:0001 d:0000741FB4FC51E0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http wait request handler -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 malloc: 00005719592400A0:1024 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 recv: eof:0, avail:-1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 recv: fd:6 444 of 1024 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 reusable connection: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 posix_memalign: 000057195925F520:4096 @16 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http process request line -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http request line: "PUT /upload HTTP/1.1" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http uri: "/upload" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http args: "" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http exten: "" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 posix_memalign: 0000571959255890:4096 @16 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http process request header line -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http header: "Host: localhost:9001" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http header: "User-Agent: curl/8.15.0" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http header: "Accept: */*" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http header: "Content-Type: text/plain" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http header: "Authorization: Nostr eyJraW5kIjoyNDI0MiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3MjU3NTI5OTQsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbIngiLCI1ZDQxNDAyYWJjNGIyYTc2Yjk3MTlkOTExMDE3YzU5MiJdXSwiY29udGVudCI6IiIsInNpZyI6Im1vY2sifQo=" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http header: "Content-Length: 15" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http header done -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 event timer del: 6: 542875089 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 generic phase: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 rewrite phase: 1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 test location: "/health" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 test location: "/report" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 test location: "/upload" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 using configuration "=/upload" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http cl:15 max:104857600 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 rewrite phase: 3 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "PUT" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script regex: "^(PUT|HEAD)$" -2025/09/07 19:51:54 [notice] 1414245#1414245: *75 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script if -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script if: false -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 post rewrite phase: 4 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 generic phase: 5 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 generic phase: 6 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 generic phase: 7 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 access phase: 8 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 access phase: 9 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 access phase: 10 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 post access phase: 11 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 generic phase: 12 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 generic phase: 13 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http client request body preread 15 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http request body content length filter -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http body new buf t:1 f:0 000057195924024D, pos 000057195924024D, size: 15 file: 0, size: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http init upstream, client timer: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "QUERY_STRING" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "QUERY_STRING: " -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "REQUEST_METHOD" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "PUT" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "CONTENT_TYPE" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "text/plain" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "CONTENT_LENGTH" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "15" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "CONTENT_LENGTH: 15" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "SCRIPT_NAME" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "/upload" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "REQUEST_URI" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "/upload" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "DOCUMENT_URI" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "/upload" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "DOCUMENT_ROOT" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "./blobs" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "SERVER_PROTOCOL" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "HTTP/1.1" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "REQUEST_SCHEME" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "http" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "GATEWAY_INTERFACE" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "CGI/1.1" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "SERVER_SOFTWARE" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "nginx/" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "1.18.0" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "REMOTE_ADDR" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "127.0.0.1" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "REMOTE_PORT" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "54220" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "REMOTE_PORT: 54220" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "SERVER_ADDR" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "127.0.0.1" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "SERVER_PORT" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "9001" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "SERVER_NAME" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "localhost" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "REDIRECT_STATUS" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "200" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "SCRIPT_FILENAME" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script var: "./blobs" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http script copy: "/ginxsom.fcgi" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyNDI0MiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3MjU3NTI5OTQsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbIngiLCI1ZDQxNDAyYWJjNGIyYTc2Yjk3MTlkOTExMDE3YzU5MiJdXSwiY29udGVudCI6IiIsInNpZyI6Im1vY2sifQo=" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 fastcgi param: "HTTP_CONTENT_LENGTH: 15" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http cleanup add: 00005719592567F8 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 get rr peer, try: 1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 stream socket 10 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 epoll add connection: fd:10 ev:80002005 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #76 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 connected -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream connect: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 posix_memalign: 0000571959226F20:128 @16 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream send request -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream send request body -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 chain writer buf fl:0 s:888 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 chain writer buf fl:0 s:15 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 chain writer buf fl:0 s:9 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 posix_memalign: 0000571959247160:4096 @16 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 chain writer in: 0000571959256868 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 writev: 912 of 912 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 chain writer out: 0000000000000000 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 event timer add: 10: 60000:542875089 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http request count:2 blk:0 -2025/09/07 19:51:54 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:54 [debug] 1414245#1414245: epoll timer: 60000 -2025/09/07 19:51:54 [debug] 1414245#1414245: epoll: fd:6 ev:0004 d:0000741FB4FC51E0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http run request: "/upload?" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream check client, write event:1, "/upload" -2025/09/07 19:51:54 [debug] 1414245#1414245: epoll: fd:10 ev:0004 d:0000741FB4FC52C8 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream request: "/upload?" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream dummy handler -2025/09/07 19:51:54 [debug] 1414245#1414245: timer delta: 1 -2025/09/07 19:51:54 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:54 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:54 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C8 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream request: "/upload?" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream process header -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 malloc: 0000571959248170:4096 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 recv: eof:0, avail:-1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 recv: fd:10 152 of 4096 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 01 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 07 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 01 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 8E -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 02 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record length: 142 -2025/09/07 19:51:54 [error] 1414245#1414245: *75 FastCGI sent in stderr: "LOG: [2025-09-07 19:51:54] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 19:51:54] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 recv: eof:0, avail:0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream request: "/upload?" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream dummy handler -2025/09/07 19:51:54 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:54 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:54 [debug] 1414245#1414245: epoll: fd:10 ev:0005 d:0000741FB4FC52C8 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream request: "/upload?" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream process header -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 recv: eof:0, avail:-1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 recv: fd:10 648 of 3944 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 01 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 07 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 01 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 01 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 9F -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 01 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record length: 415 -2025/09/07 19:51:54 [error] 1414245#1414245: *75 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -AUTH: nostr_validate_request returned: 0, valid: 0, reason: NOSTR event validation failed -AUTH: pubkey extracted: '' -AUTH: resource_hash: 'b61e4ab61a73cc7ddaeab81ba5643f3eca7234c2fb868546a88decac271a77c7' -AUTH: operation: 'upload' -LOG: [2025-09-07 19:51:54] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 01 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 07 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 01 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record length: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 01 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 06 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 01 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: B7 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 01 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record length: 183 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi parser: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi parser: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi header: "Content-Type: application/json" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi parser: 1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi header done -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Sun, 07 Sep 2025 23:51:54 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 write new buf t:1 f:0 0000571959247428, pos 0000571959247428, size: 181 file: 0, size: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http write filter: l:0 f:0 s:181 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http cacheable: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream process upstream -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe read upstream: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe preread: 148 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe buf free s:0 t:1 f:0 0000571959248170, pos 00005719592483FC, size: 148 file: 0, size: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe length: -1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe write downstream: 1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe write busy: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe write: out:0000000000000000, f:0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe read upstream: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe buf free s:0 t:1 f:0 0000571959248170, pos 00005719592483FC, size: 148 file: 0, size: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe length: -1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 event timer: 10, old: 542875089, new: 542875090 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream request: "/upload?" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream dummy handler -2025/09/07 19:51:54 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:54 [debug] 1414245#1414245: epoll timer: 59999 -2025/09/07 19:51:54 [debug] 1414245#1414245: epoll: fd:10 ev:2005 d:0000741FB4FC52C8 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream request: "/upload?" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream process upstream -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe read upstream: 1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 readv: eof:1, avail:-1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 readv: 1, last:3296 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe recv chain: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe buf free s:0 t:1 f:0 0000571959248170, pos 00005719592483FC, size: 148 file: 0, size: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe length: -1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 input buf #0 00005719592483FC -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 01 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 06 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 01 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record length: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi closed stdout -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 01 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 03 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 01 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 08 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record byte: 00 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi record length: 8 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http fastcgi sent end request -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 input buf 00005719592483FC 123 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe write downstream: 1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe write downstream flush in -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http output filter "/upload?" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http copy filter: "/upload?" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http postpone filter "/upload?" 0000571959256838 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http chunk: 123 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 write old buf t:1 f:0 0000571959247428, pos 0000571959247428, size: 181 file: 0, size: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 write new buf t:1 f:0 0000571959247720, pos 0000571959247720, size: 4 file: 0, size: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 write new buf t:1 f:0 0000571959248170, pos 00005719592483FC, size: 123 file: 0, size: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http write filter: l:0 f:0 s:310 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http copy filter: 0 "/upload?" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 pipe write downstream done -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 event timer: 10, old: 542875089, new: 542875090 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream exit: 0000000000000000 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 finalize http upstream request: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 finalize http fastcgi request -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 free rr peer 1 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 close http upstream connection: 10 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 free: 0000571959226F20, unused: 48 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 event timer del: 10: 542875089 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 reusable connection: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http upstream temp fd: -1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http output filter "/upload?" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http copy filter: "/upload?" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http postpone filter "/upload?" 00007FFE2F6E8080 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http chunk: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 write old buf t:1 f:0 0000571959247428, pos 0000571959247428, size: 181 file: 0, size: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 write old buf t:1 f:0 0000571959247720, pos 0000571959247720, size: 4 file: 0, size: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 write old buf t:1 f:0 0000571959248170, pos 00005719592483FC, size: 123 file: 0, size: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 write old buf t:0 f:0 0000000000000000, pos 000057191FE5B2E8, size: 2 file: 0, size: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 write new buf t:0 f:0 0000000000000000, pos 000057191FE5B2E5, size: 5 file: 0, size: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http write filter: l:1 f:0 s:315 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http write filter limit 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 writev: 315 of 315 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http write filter 0000000000000000 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http copy filter: 0 "/upload?" -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 set http keepalive handler -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http close request -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http log handler -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 free: 0000571959248170 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 free: 000057195925F520, unused: 3 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 free: 0000571959255890, unused: 8 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 free: 0000571959247160, unused: 2154 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 free: 00005719592400A0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 hc free: 0000000000000000 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 hc busy: 0000000000000000 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 tcp_nodelay -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 reusable connection: 1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 event timer add: 6: 65000:542880090 -2025/09/07 19:51:54 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:54 [debug] 1414245#1414245: epoll timer: 65000 -2025/09/07 19:51:54 [debug] 1414245#1414245: epoll: fd:6 ev:2005 d:0000741FB4FC51E0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 http keepalive handler -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 malloc: 00005719592400A0:1024 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 recv: eof:1, avail:-1 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 recv: fd:6 0 of 1024 -2025/09/07 19:51:54 [info] 1414245#1414245: *75 client 127.0.0.1 closed keepalive connection -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 close http connection: 6 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 event timer del: 6: 542880090 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 reusable connection: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 free: 00005719592400A0 -2025/09/07 19:51:54 [debug] 1414245#1414245: *75 free: 000057195923D840, unused: 120 -2025/09/07 19:51:54 [debug] 1414245#1414245: timer delta: 0 -2025/09/07 19:51:54 [debug] 1414245#1414245: worker cycle -2025/09/07 19:51:54 [debug] 1414245#1414245: epoll timer: -1 -2025/09/07 19:58:14 [notice] 1414244#1414244: signal 15 (SIGTERM) received from 1417286, exiting -2025/09/07 19:58:14 [debug] 1414244#1414244: wake up, sigio 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: child: 0 1414245 e:0 t:0 d:0 r:1 j:0 -2025/09/07 19:58:14 [debug] 1414244#1414244: termination cycle: 50 -2025/09/07 19:58:14 [debug] 1414244#1414244: sigsuspend -2025/09/07 19:58:14 [debug] 1414245#1414245: epoll: fd:7 ev:0001 d:0000741FB4FC50F8 -2025/09/07 19:58:14 [debug] 1414245#1414245: channel handler -2025/09/07 19:58:14 [debug] 1414245#1414245: channel: 32 -2025/09/07 19:58:14 [debug] 1414245#1414245: channel command: 4 -2025/09/07 19:58:14 [debug] 1414245#1414245: channel: -2 -2025/09/07 19:58:14 [debug] 1414245#1414245: timer delta: 379603 -2025/09/07 19:58:14 [notice] 1414245#1414245: exiting -2025/09/07 19:58:14 [debug] 1414245#1414245: flush files -2025/09/07 19:58:14 [debug] 1414245#1414245: run cleanup: 00005719592B2500 -2025/09/07 19:58:14 [debug] 1414245#1414245: run cleanup: 000057195929AEE0 -2025/09/07 19:58:14 [debug] 1414245#1414245: cleanup resolver -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 00005719592B3960 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 000057195929E740 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 0000571959261640 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 0000571959260530 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 000057195925A500 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 0000571959259440 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 0000571959258380 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 00005719592572C0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 000057195924C180 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 0000571959243150, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 0000571959250070, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 000057195925B510, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 0000571959262650, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 0000571959266660, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 000057195926A670, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 000057195926E680, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 0000571959272690, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 00005719592766A0, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 000057195927A6B0, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 000057195927E6C0, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 00005719592826D0, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 00005719592866E0, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 000057195928A6F0, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 000057195928E700, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 0000571959292710, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 0000571959296720, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 000057195929A730, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 000057195929F910, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 00005719592A3920, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 00005719592A7930, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 00005719592AB940, unused: 0 -2025/09/07 19:58:14 [debug] 1414245#1414245: free: 00005719592AF950, unused: 5176 -2025/09/07 19:58:14 [notice] 1414245#1414245: exit -2025/09/07 19:58:14 [notice] 1414244#1414244: signal 17 (SIGCHLD) received from 1414245 -2025/09/07 19:58:14 [notice] 1414244#1414244: worker process 1414245 exited with code 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: shmtx forced unlock -2025/09/07 19:58:14 [debug] 1414244#1414244: wake up, sigio 3 -2025/09/07 19:58:14 [debug] 1414244#1414244: reap children -2025/09/07 19:58:14 [debug] 1414244#1414244: child: 0 1414245 e:1 t:1 d:0 r:1 j:0 -2025/09/07 19:58:14 [notice] 1414244#1414244: exit -2025/09/07 19:58:14 [debug] 1414244#1414244: close listening 0.0.0.0:9001 #5 -2025/09/07 19:58:14 [debug] 1414244#1414244: run cleanup: 000057195929AEE0 -2025/09/07 19:58:14 [debug] 1414244#1414244: cleanup resolver -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 00005719592B3960 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 000057195929E740 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 0000571959261640 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 0000571959260530 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 000057195925A500 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 0000571959259440 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 0000571959258380 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 00005719592572C0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 000057195924C180 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 0000571959243150, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 0000571959250070, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 000057195925B510, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 0000571959262650, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 0000571959266660, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 000057195926A670, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 000057195926E680, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 0000571959272690, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 00005719592766A0, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 000057195927A6B0, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 000057195927E6C0, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 00005719592826D0, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 00005719592866E0, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 000057195928A6F0, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 000057195928E700, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 0000571959292710, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 0000571959296720, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 000057195929A730, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 000057195929F910, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 00005719592A3920, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 00005719592A7930, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 00005719592AB940, unused: 0 -2025/09/07 19:58:14 [debug] 1414244#1414244: free: 00005719592AF950, unused: 5207 -2025/09/07 19:58:17 [debug] 1417316#1417316: bind() 0.0.0.0:9001 #5 -2025/09/07 19:58:17 [debug] 1417316#1417316: counter: 000071F91DBB0080, 1 -2025/09/07 19:58:17 [debug] 1417317#1417317: bind() 0.0.0.0:9001 #5 -2025/09/07 19:58:17 [notice] 1417317#1417317: using the "epoll" event method -2025/09/07 19:58:17 [debug] 1417317#1417317: counter: 00007C398FA63080, 1 -2025/09/07 19:58:17 [notice] 1417317#1417317: nginx/1.18.0 (Ubuntu) -2025/09/07 19:58:17 [notice] 1417317#1417317: OS: Linux 6.12.10-76061203-generic -2025/09/07 19:58:17 [notice] 1417317#1417317: getrlimit(RLIMIT_NOFILE): 1048576:1048576 -2025/09/07 19:58:17 [debug] 1417318#1417317: write: 6, 00007FFE55DB9D80, 8, 0 -2025/09/07 19:58:17 [debug] 1417318#1417318: setproctitle: "nginx: master process nginx -p . -c config/local-nginx.conf" -2025/09/07 19:58:17 [notice] 1417318#1417318: start worker processes -2025/09/07 19:58:17 [debug] 1417318#1417318: channel 6:7 -2025/09/07 19:58:17 [notice] 1417318#1417318: start worker process 1417319 -2025/09/07 19:58:17 [debug] 1417318#1417318: sigsuspend -2025/09/07 19:58:17 [debug] 1417319#1417319: add cleanup: 00006546982BF4E0 -2025/09/07 19:58:17 [debug] 1417319#1417319: malloc: 000065469824BBD0:8 -2025/09/07 19:58:17 [debug] 1417319#1417319: notify eventfd: 9 -2025/09/07 19:58:17 [debug] 1417319#1417319: testing the EPOLLRDHUP flag: success -2025/09/07 19:58:17 [debug] 1417319#1417319: malloc: 0000654698261060:6144 -2025/09/07 19:58:17 [debug] 1417319#1417319: malloc: 00007C398F85B010:237568 -2025/09/07 19:58:17 [debug] 1417319#1417319: malloc: 00006546982C2210:98304 -2025/09/07 19:58:17 [debug] 1417319#1417319: malloc: 00006546982DA220:98304 -2025/09/07 19:58:17 [debug] 1417319#1417319: epoll add event: fd:5 op:1 ev:00002001 -2025/09/07 19:58:17 [debug] 1417319#1417319: epoll add event: fd:7 op:1 ev:00002001 -2025/09/07 19:58:17 [debug] 1417319#1417319: setproctitle: "nginx: worker process" -2025/09/07 19:58:17 [debug] 1417319#1417319: worker cycle -2025/09/07 19:58:17 [debug] 1417319#1417319: epoll timer: -1 -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll: fd:5 ev:0001 d:00007C398F85B010 -2025/09/07 20:02:16 [debug] 1417319#1417319: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: posix_memalign: 000065469824A840:512 @16 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 accept: 127.0.0.1:53632 fd:6 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 event timer add: 6: 60000:543496494 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 reusable connection: 1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 20:02:16 [debug] 1417319#1417319: timer delta: 238607 -2025/09/07 20:02:16 [debug] 1417319#1417319: worker cycle -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll timer: 60000 -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll: fd:6 ev:0001 d:00007C398F85B1E0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http wait request handler -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 malloc: 000065469824D0A0:1024 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 recv: eof:0, avail:-1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 recv: fd:6 444 of 1024 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 reusable connection: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 posix_memalign: 000065469826C500:4096 @16 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http process request line -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http request line: "PUT /upload HTTP/1.1" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http uri: "/upload" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http args: "" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http exten: "" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 posix_memalign: 0000654698262870:4096 @16 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http process request header line -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http header: "Host: localhost:9001" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http header: "User-Agent: curl/8.15.0" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http header: "Accept: */*" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http header: "Content-Type: text/plain" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http header: "Authorization: Nostr eyJraW5kIjoyNDI0MiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3MjU3NTI5OTQsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbIngiLCI1ZDQxNDAyYWJjNGIyYTc2Yjk3MTlkOTExMDE3YzU5MiJdXSwiY29udGVudCI6IiIsInNpZyI6Im1vY2sifQo=" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http header: "Content-Length: 15" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http header done -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 event timer del: 6: 543496494 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 generic phase: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 rewrite phase: 1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 test location: "/health" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 test location: "/report" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 test location: "/upload" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 using configuration "=/upload" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http cl:15 max:104857600 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 rewrite phase: 3 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "PUT" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script regex: "^(PUT|HEAD)$" -2025/09/07 20:02:16 [notice] 1417319#1417319: *1 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script if -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script if: false -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 post rewrite phase: 4 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 generic phase: 5 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 generic phase: 6 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 generic phase: 7 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 access phase: 8 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 access phase: 9 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 access phase: 10 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 post access phase: 11 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 generic phase: 12 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 generic phase: 13 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http client request body preread 15 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http request body content length filter -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http body new buf t:1 f:0 000065469824D24D, pos 000065469824D24D, size: 15 file: 0, size: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http init upstream, client timer: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "QUERY_STRING" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "QUERY_STRING: " -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "REQUEST_METHOD" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "PUT" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "CONTENT_TYPE" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "text/plain" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "CONTENT_LENGTH" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "15" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "CONTENT_LENGTH: 15" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "SCRIPT_NAME" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "/upload" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "REQUEST_URI" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "/upload" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "DOCUMENT_URI" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "/upload" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "DOCUMENT_ROOT" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "./blobs" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "SERVER_PROTOCOL" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "HTTP/1.1" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "REQUEST_SCHEME" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "http" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "GATEWAY_INTERFACE" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "CGI/1.1" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "SERVER_SOFTWARE" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "nginx/" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "1.18.0" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "REMOTE_ADDR" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "127.0.0.1" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "REMOTE_PORT" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "53632" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "REMOTE_PORT: 53632" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "SERVER_ADDR" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "127.0.0.1" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "SERVER_PORT" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "9001" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "SERVER_NAME" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "localhost" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "REDIRECT_STATUS" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "200" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "SCRIPT_FILENAME" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script var: "./blobs" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http script copy: "/ginxsom.fcgi" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyNDI0MiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3MjU3NTI5OTQsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbIngiLCI1ZDQxNDAyYWJjNGIyYTc2Yjk3MTlkOTExMDE3YzU5MiJdXSwiY29udGVudCI6IiIsInNpZyI6Im1vY2sifQo=" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 fastcgi param: "HTTP_CONTENT_LENGTH: 15" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http cleanup add: 00006546982637D8 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 get rr peer, try: 1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 stream socket 10 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 epoll add connection: fd:10 ev:80002005 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #2 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 connected -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream connect: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 posix_memalign: 0000654698233F20:128 @16 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream send request -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream send request body -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 chain writer buf fl:0 s:888 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 chain writer buf fl:0 s:15 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 chain writer buf fl:0 s:9 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 posix_memalign: 0000654698254140:4096 @16 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 chain writer in: 0000654698263848 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 writev: 912 of 912 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 chain writer out: 0000000000000000 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 event timer add: 10: 60000:543496494 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http request count:2 blk:0 -2025/09/07 20:02:16 [debug] 1417319#1417319: timer delta: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: worker cycle -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll timer: 60000 -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll: fd:6 ev:0004 d:00007C398F85B1E0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http run request: "/upload?" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream check client, write event:1, "/upload" -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll: fd:10 ev:0004 d:00007C398F85B2C8 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream request: "/upload?" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream dummy handler -2025/09/07 20:02:16 [debug] 1417319#1417319: timer delta: 1 -2025/09/07 20:02:16 [debug] 1417319#1417319: worker cycle -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll timer: 59999 -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll: fd:10 ev:0004 d:00007C398F85B2C8 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream request: "/upload?" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream dummy handler -2025/09/07 20:02:16 [debug] 1417319#1417319: timer delta: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: worker cycle -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll timer: 59999 -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll: fd:10 ev:0005 d:00007C398F85B2C8 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream request: "/upload?" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream process header -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 malloc: 0000654698255150:4096 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 recv: eof:0, avail:-1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 recv: fd:10 152 of 4096 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 01 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 07 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 01 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 8E -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 02 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record length: 142 -2025/09/07 20:02:16 [error] 1417319#1417319: *1 FastCGI sent in stderr: "LOG: [2025-09-07 20:02:16] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 20:02:16] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 recv: eof:0, avail:0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream request: "/upload?" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream dummy handler -2025/09/07 20:02:16 [debug] 1417319#1417319: timer delta: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: worker cycle -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll timer: 59999 -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll: fd:10 ev:0005 d:00007C398F85B2C8 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream request: "/upload?" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream process header -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 recv: eof:0, avail:-1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 recv: fd:10 416 of 3944 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 01 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 07 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 01 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: B4 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 04 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record length: 180 -2025/09/07 20:02:16 [error] 1417319#1417319: *1 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -LOG: [2025-09-07 20:02:16] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 01 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 07 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 01 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record length: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 01 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 06 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 01 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: B7 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 01 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record length: 183 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi parser: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi parser: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi header: "Content-Type: application/json" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi parser: 1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi header done -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 00:02:16 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 write new buf t:1 f:0 0000654698254408, pos 0000654698254408, size: 181 file: 0, size: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http write filter: l:0 f:0 s:181 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http cacheable: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream process upstream -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe read upstream: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe preread: 148 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe buf free s:0 t:1 f:0 0000654698255150, pos 00006546982552F4, size: 148 file: 0, size: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe length: -1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe write downstream: 1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe write busy: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe write: out:0000000000000000, f:0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe read upstream: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe buf free s:0 t:1 f:0 0000654698255150, pos 00006546982552F4, size: 148 file: 0, size: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe length: -1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 event timer: 10, old: 543496494, new: 543496496 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream request: "/upload?" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream dummy handler -2025/09/07 20:02:16 [debug] 1417319#1417319: timer delta: 1 -2025/09/07 20:02:16 [debug] 1417319#1417319: worker cycle -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll timer: 59998 -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll: fd:10 ev:2005 d:00007C398F85B2C8 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream request: "/upload?" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream process upstream -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe read upstream: 1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 readv: eof:1, avail:-1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 readv: 1, last:3528 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe recv chain: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe buf free s:0 t:1 f:0 0000654698255150, pos 00006546982552F4, size: 148 file: 0, size: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe length: -1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 input buf #0 00006546982552F4 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 01 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 06 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 01 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record length: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi closed stdout -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 01 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 03 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 01 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 08 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record byte: 00 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi record length: 8 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http fastcgi sent end request -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 input buf 00006546982552F4 123 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe write downstream: 1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe write downstream flush in -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http output filter "/upload?" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http copy filter: "/upload?" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http postpone filter "/upload?" 0000654698263818 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http chunk: 123 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 write old buf t:1 f:0 0000654698254408, pos 0000654698254408, size: 181 file: 0, size: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 write new buf t:1 f:0 0000654698254700, pos 0000654698254700, size: 4 file: 0, size: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 write new buf t:1 f:0 0000654698255150, pos 00006546982552F4, size: 123 file: 0, size: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 write new buf t:0 f:0 0000000000000000, pos 000065466786C2E8, size: 2 file: 0, size: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http write filter: l:0 f:0 s:310 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http copy filter: 0 "/upload?" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 pipe write downstream done -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 event timer: 10, old: 543496494, new: 543496496 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream exit: 0000000000000000 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 finalize http upstream request: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 finalize http fastcgi request -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 free rr peer 1 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 close http upstream connection: 10 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 free: 0000654698233F20, unused: 48 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 event timer del: 10: 543496494 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 reusable connection: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http upstream temp fd: -1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http output filter "/upload?" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http copy filter: "/upload?" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http postpone filter "/upload?" 00007FFE55DB99C0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http chunk: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 write old buf t:1 f:0 0000654698254408, pos 0000654698254408, size: 181 file: 0, size: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 write old buf t:1 f:0 0000654698254700, pos 0000654698254700, size: 4 file: 0, size: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 write old buf t:1 f:0 0000654698255150, pos 00006546982552F4, size: 123 file: 0, size: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 write old buf t:0 f:0 0000000000000000, pos 000065466786C2E8, size: 2 file: 0, size: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 write new buf t:0 f:0 0000000000000000, pos 000065466786C2E5, size: 5 file: 0, size: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http write filter: l:1 f:0 s:315 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http write filter limit 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 writev: 315 of 315 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http write filter 0000000000000000 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http copy filter: 0 "/upload?" -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 set http keepalive handler -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http close request -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http log handler -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 free: 0000654698255150 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 free: 000065469826C500, unused: 3 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 free: 0000654698262870, unused: 8 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 free: 0000654698254140, unused: 2154 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 free: 000065469824D0A0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 hc free: 0000000000000000 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 hc busy: 0000000000000000 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 tcp_nodelay -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 reusable connection: 1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 event timer add: 6: 65000:543501496 -2025/09/07 20:02:16 [debug] 1417319#1417319: timer delta: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: worker cycle -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll timer: 65000 -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll: fd:6 ev:2005 d:00007C398F85B1E0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 http keepalive handler -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 malloc: 000065469824D0A0:1024 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 recv: eof:1, avail:-1 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 recv: fd:6 0 of 1024 -2025/09/07 20:02:16 [info] 1417319#1417319: *1 client 127.0.0.1 closed keepalive connection -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 close http connection: 6 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 event timer del: 6: 543501496 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 reusable connection: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 free: 000065469824D0A0 -2025/09/07 20:02:16 [debug] 1417319#1417319: *1 free: 000065469824A840, unused: 120 -2025/09/07 20:02:16 [debug] 1417319#1417319: timer delta: 0 -2025/09/07 20:02:16 [debug] 1417319#1417319: worker cycle -2025/09/07 20:02:16 [debug] 1417319#1417319: epoll timer: -1 -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll: fd:5 ev:0001 d:00007C398F85B010 -2025/09/07 20:05:20 [debug] 1417319#1417319: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: posix_memalign: 000065469824A840:512 @16 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 accept: 127.0.0.1:53386 fd:6 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 event timer add: 6: 60000:543680783 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 reusable connection: 1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 20:05:20 [debug] 1417319#1417319: timer delta: 184287 -2025/09/07 20:05:20 [debug] 1417319#1417319: worker cycle -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll timer: 60000 -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll: fd:6 ev:0001 d:00007C398F85B1E1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http wait request handler -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 malloc: 000065469824D0A0:1024 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 recv: eof:0, avail:-1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 recv: fd:6 78 of 1024 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 reusable connection: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 posix_memalign: 000065469826C500:4096 @16 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http process request line -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http request line: "GET / HTTP/1.1" -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http uri: "/" -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http args: "" -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http exten: "" -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 posix_memalign: 0000654698262870:4096 @16 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http process request header line -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http header: "Host: localhost:9001" -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http header: "User-Agent: curl/8.15.0" -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http header: "Accept: */*" -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http header done -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 event timer del: 6: 543680783 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 generic phase: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 rewrite phase: 1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 test location: "/health" -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 test location: "/auth" -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 test location: "/api/" -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 test location: "/" -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 using configuration "=/" -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http cl:-1 max:104857600 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 rewrite phase: 3 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http set discard body -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 00:05:20 GMT -Content-Type: application/octet-stream -Content-Length: 101 -Connection: keep-alive -Content-Type: text/plain - -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 write new buf t:1 f:0 0000654698262C50, pos 0000654698262C50, size: 198 file: 0, size: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http write filter: l:0 f:0 s:198 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http output filter "/?" -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http copy filter: "/?" -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http postpone filter "/?" 00007FFE55DB9910 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 write old buf t:1 f:0 0000654698262C50, pos 0000654698262C50, size: 198 file: 0, size: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 write new buf t:0 f:0 0000000000000000, pos 00006546982A7730, size: 101 file: 0, size: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http write filter: l:1 f:0 s:299 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http write filter limit 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 writev: 299 of 299 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http write filter 0000000000000000 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http copy filter: 0 "/?" -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http finalize request: 0, "/?" a:1, c:1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 set http keepalive handler -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http close request -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http log handler -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 free: 000065469826C500, unused: 8 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 free: 0000654698262870, unused: 2632 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 free: 000065469824D0A0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 hc free: 0000000000000000 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 hc busy: 0000000000000000 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 tcp_nodelay -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 reusable connection: 1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 event timer add: 6: 65000:543685783 -2025/09/07 20:05:20 [debug] 1417319#1417319: timer delta: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: worker cycle -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll timer: 65000 -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll: fd:6 ev:2001 d:00007C398F85B1E1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 http keepalive handler -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 malloc: 000065469824D0A0:1024 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 recv: eof:1, avail:-1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 recv: fd:6 0 of 1024 -2025/09/07 20:05:20 [info] 1417319#1417319: *3 client 127.0.0.1 closed keepalive connection -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 close http connection: 6 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 event timer del: 6: 543685783 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 reusable connection: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 free: 000065469824D0A0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *3 free: 000065469824A840, unused: 136 -2025/09/07 20:05:20 [debug] 1417319#1417319: timer delta: 1 -2025/09/07 20:05:20 [debug] 1417319#1417319: worker cycle -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll timer: -1 -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll: fd:5 ev:0001 d:00007C398F85B010 -2025/09/07 20:05:20 [debug] 1417319#1417319: accept on 0.0.0.0:9001, ready: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: posix_memalign: 000065469824A840:512 @16 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 accept: 127.0.0.1:53400 fd:6 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 event timer add: 6: 60000:543681083 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 reusable connection: 1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 epoll add event: fd:6 op:1 ev:80002001 -2025/09/07 20:05:20 [debug] 1417319#1417319: timer delta: 299 -2025/09/07 20:05:20 [debug] 1417319#1417319: worker cycle -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll timer: 60000 -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll: fd:6 ev:0001 d:00007C398F85B1E0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http wait request handler -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 malloc: 000065469824D0A0:1024 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 recv: eof:0, avail:-1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 recv: fd:6 799 of 1024 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 reusable connection: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 posix_memalign: 000065469826C500:4096 @16 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http process request line -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http request line: "PUT /upload HTTP/1.1" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http uri: "/upload" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http args: "" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http exten: "" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 posix_memalign: 0000654698262870:4096 @16 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http process request header line -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http header: "Host: localhost:9001" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http header: "User-Agent: curl/8.15.0" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http header: "Accept: */*" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http header: "Authorization: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiI3ODQzYzAyMGU3YjRiM2UyODEwNDcyOTYzODMwNTdkMTQ1OTIxOThlM2ExMmQ2MTU1ZjIxNmExMGMwMmRiZjI3IiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODk5MjAsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbImV4cGlyYXRpb24iLCIxNzU3MjkzNTIwIl0sWyJ4IiwiODAyMDU4MzY0ODczOTEwZGM2ZTg2MTFjMjIzMjI0MjQ4NDIxMWExODcyNGMxMjkyNDg2YjEwNzkzOWRlNzI5OCJdXSwiY29udGVudCI6IiIsInNpZyI6ImVmZWFmZWFlMjUwODM4YjFjNDFhNmJhODMxOWFmOGZiMzcyNWQwYjgyNjY3MmFkNjQ2ZWIxZDczNWRmMGFkMTc4YTQ1N2UxM2JlMDc1M2Y5MDM4NmVjZDNhNDYzMDY0NDczNGFjYzVmZjU0ZmZkMTEzMjRiOWRhOWM2OGJlMmJmIn0K" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http header: "Content-Type: text/plain" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http header: "Content-Length: 30" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http header done -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 event timer del: 6: 543681083 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 generic phase: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 rewrite phase: 1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 test location: "/health" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 test location: "/report" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 test location: "/upload" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 using configuration "=/upload" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http cl:30 max:104857600 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 rewrite phase: 3 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "PUT" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script regex: "^(PUT|HEAD)$" -2025/09/07 20:05:20 [notice] 1417319#1417319: *4 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script if -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script if: false -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 post rewrite phase: 4 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 generic phase: 5 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 generic phase: 6 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 generic phase: 7 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 access phase: 8 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 access phase: 9 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 access phase: 10 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 post access phase: 11 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 generic phase: 12 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 generic phase: 13 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http client request body preread 30 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http request body content length filter -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http body new buf t:1 f:0 000065469824D3A1, pos 000065469824D3A1, size: 30 file: 0, size: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http init upstream, client timer: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 epoll add event: fd:6 op:3 ev:80002005 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "QUERY_STRING" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "QUERY_STRING: " -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "REQUEST_METHOD" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "PUT" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "CONTENT_TYPE" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "text/plain" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "CONTENT_LENGTH" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "30" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "CONTENT_LENGTH: 30" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "SCRIPT_NAME" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "/upload" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "REQUEST_URI" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "/upload" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "REQUEST_URI: /upload" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "DOCUMENT_URI" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "/upload" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "DOCUMENT_ROOT" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "./blobs" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "SERVER_PROTOCOL" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "HTTP/1.1" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "REQUEST_SCHEME" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "http" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "REQUEST_SCHEME: http" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "GATEWAY_INTERFACE" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "CGI/1.1" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "SERVER_SOFTWARE" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "nginx/" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "1.18.0" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "REMOTE_ADDR" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "127.0.0.1" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "REMOTE_PORT" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "53400" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "REMOTE_PORT: 53400" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "SERVER_ADDR" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "127.0.0.1" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "SERVER_PORT" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "9001" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "SERVER_PORT: 9001" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "SERVER_NAME" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "localhost" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "SERVER_NAME: localhost" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "REDIRECT_STATUS" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "200" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "SCRIPT_FILENAME" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script var: "./blobs" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http script copy: "/ginxsom.fcgi" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiI3ODQzYzAyMGU3YjRiM2UyODEwNDcyOTYzODMwNTdkMTQ1OTIxOThlM2ExMmQ2MTU1ZjIxNmExMGMwMmRiZjI3IiwicHVia2V5IjoiODdkMzU2MWYxOWI3NGFkYmU4YmY4NDA2ODI5OTI0NjYwNjg4MzBhOWQ4YzM2YjRhMGM5OWQzNmY4MjZjYjZjYiIsImNyZWF0ZWRfYXQiOjE3NTcyODk5MjAsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbImV4cGlyYXRpb24iLCIxNzU3MjkzNTIwIl0sWyJ4IiwiODAyMDU4MzY0ODczOTEwZGM2ZTg2MTFjMjIzMjI0MjQ4NDIxMWExODcyNGMxMjkyNDg2YjEwNzkzOWRlNzI5OCJdXSwiY29udGVudCI6IiIsInNpZyI6ImVmZWFmZWFlMjUwODM4YjFjNDFhNmJhODMxOWFmOGZiMzcyNWQwYjgyNjY3MmFkNjQ2ZWIxZDczNWRmMGFkMTc4YTQ1N2UxM2JlMDc1M2Y5MDM4NmVjZDNhNDYzMDY0NDczNGFjYzVmZjU0ZmZkMTEzMjRiOWRhOWM2OGJlMmJmIn0K" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 fastcgi param: "HTTP_CONTENT_LENGTH: 30" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 posix_memalign: 0000654698254140:4096 @16 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http cleanup add: 0000654698254220 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 get rr peer, try: 1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 stream socket 10 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 epoll add connection: fd:10 ev:80002005 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #5 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 connected -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http upstream connect: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 posix_memalign: 0000654698233F20:128 @16 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http upstream send request -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http upstream send request body -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 chain writer buf fl:0 s:1224 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 chain writer buf fl:0 s:30 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 chain writer buf fl:0 s:10 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 chain writer in: 0000654698254290 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 writev: 1264 of 1264 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 chain writer out: 0000000000000000 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 event timer add: 10: 60000:543681084 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http request count:2 blk:0 -2025/09/07 20:05:20 [debug] 1417319#1417319: timer delta: 1 -2025/09/07 20:05:20 [debug] 1417319#1417319: worker cycle -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll timer: 60000 -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll: fd:6 ev:0004 d:00007C398F85B1E0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http run request: "/upload?" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http upstream check client, write event:1, "/upload" -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll: fd:10 ev:0004 d:00007C398F85B2C9 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http upstream request: "/upload?" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http upstream dummy handler -2025/09/07 20:05:20 [debug] 1417319#1417319: timer delta: 1 -2025/09/07 20:05:20 [debug] 1417319#1417319: worker cycle -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll timer: 59999 -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll: fd:10 ev:0005 d:00007C398F85B2C9 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http upstream request: "/upload?" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http upstream process header -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 malloc: 0000654698255150:4096 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 recv: eof:0, avail:-1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 recv: fd:10 152 of 4096 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 01 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 07 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 01 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 8E -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 02 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record length: 142 -2025/09/07 20:05:20 [error] 1417319#1417319: *4 FastCGI sent in stderr: "LOG: [2025-09-07 20:05:20] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-07 20:05:20] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 recv: eof:0, avail:0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http upstream request: "/upload?" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http upstream dummy handler -2025/09/07 20:05:20 [debug] 1417319#1417319: timer delta: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: worker cycle -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll timer: 59999 -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll: fd:10 ev:2005 d:00007C398F85B2C9 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http upstream request: "/upload?" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http upstream process header -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 recv: eof:1, avail:-1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 recv: fd:10 456 of 3944 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 01 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 07 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 01 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: B4 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 04 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record length: 180 -2025/09/07 20:05:20 [error] 1417319#1417319: *4 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: YES -AUTH: About to perform authentication validation -LOG: [2025-09-07 20:05:20] PUT /upload - Auth: auth_failed - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 01 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 07 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 01 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record length: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 01 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 06 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 01 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: D9 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 07 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record length: 217 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi parser: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi header: "Status: 401 Unauthorized" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi parser: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi header: "Content-Type: application/json" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi parser: 1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi header done -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 00:05:20 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 write new buf t:1 f:0 0000654698254558, pos 0000654698254558, size: 181 file: 0, size: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http write filter: l:0 f:0 s:181 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http cacheable: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http upstream process upstream -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 pipe read upstream: 1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 pipe preread: 188 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 readv: eof:1, avail:0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 readv: 1, last:3488 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 pipe recv chain: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 pipe buf free s:0 t:1 f:0 0000654698255150, pos 00006546982552F4, size: 188 file: 0, size: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 pipe length: -1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 input buf #0 00006546982552F4 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 01 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 06 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 01 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record length: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi closed stdout -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 01 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 03 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 01 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 08 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record byte: 00 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi record length: 8 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http fastcgi sent end request -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 input buf 00006546982552F4 157 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 pipe write downstream: 1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 pipe write downstream flush in -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http output filter "/upload?" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http copy filter: "/upload?" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http postpone filter "/upload?" 0000654698254260 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http chunk: 157 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 write old buf t:1 f:0 0000654698254558, pos 0000654698254558, size: 181 file: 0, size: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 write new buf t:1 f:0 0000654698254850, pos 0000654698254850, size: 4 file: 0, size: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 write new buf t:1 f:0 0000654698255150, pos 00006546982552F4, size: 157 file: 0, size: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 write new buf t:0 f:0 0000000000000000, pos 000065466786C2E8, size: 2 file: 0, size: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http write filter: l:0 f:0 s:344 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http copy filter: 0 "/upload?" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 pipe write downstream done -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 event timer: 10, old: 543681084, new: 543681088 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http upstream exit: 0000000000000000 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 finalize http upstream request: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 finalize http fastcgi request -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 free rr peer 1 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 close http upstream connection: 10 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 free: 0000654698233F20, unused: 48 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 event timer del: 10: 543681084 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 reusable connection: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http upstream temp fd: -1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http output filter "/upload?" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http copy filter: "/upload?" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http postpone filter "/upload?" 00007FFE55DB99C0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http chunk: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 write old buf t:1 f:0 0000654698254558, pos 0000654698254558, size: 181 file: 0, size: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 write old buf t:1 f:0 0000654698254850, pos 0000654698254850, size: 4 file: 0, size: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 write old buf t:1 f:0 0000654698255150, pos 00006546982552F4, size: 157 file: 0, size: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 write old buf t:0 f:0 0000000000000000, pos 000065466786C2E8, size: 2 file: 0, size: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 write new buf t:0 f:0 0000000000000000, pos 000065466786C2E5, size: 5 file: 0, size: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http write filter: l:1 f:0 s:349 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http write filter limit 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 writev: 349 of 349 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http write filter 0000000000000000 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http copy filter: 0 "/upload?" -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 set http keepalive handler -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http close request -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http log handler -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 free: 0000654698255150 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 free: 000065469826C500, unused: 3 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 free: 0000654698262870, unused: 8 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 free: 0000654698254140, unused: 1818 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 free: 000065469824D0A0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 hc free: 0000000000000000 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 hc busy: 0000000000000000 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 tcp_nodelay -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 reusable connection: 1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 event timer add: 6: 65000:543686088 -2025/09/07 20:05:20 [debug] 1417319#1417319: timer delta: 3 -2025/09/07 20:05:20 [debug] 1417319#1417319: worker cycle -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll timer: 65000 -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll: fd:6 ev:2005 d:00007C398F85B1E0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 http keepalive handler -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 malloc: 000065469824D0A0:1024 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 recv: eof:1, avail:-1 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 recv: fd:6 0 of 1024 -2025/09/07 20:05:20 [info] 1417319#1417319: *4 client 127.0.0.1 closed keepalive connection -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 close http connection: 6 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 event timer del: 6: 543686088 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 reusable connection: 0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 free: 000065469824D0A0 -2025/09/07 20:05:20 [debug] 1417319#1417319: *4 free: 000065469824A840, unused: 120 -2025/09/07 20:05:20 [debug] 1417319#1417319: timer delta: 1 -2025/09/07 20:05:20 [debug] 1417319#1417319: worker cycle -2025/09/07 20:05:20 [debug] 1417319#1417319: epoll timer: -1 -2025/09/08 07:46:13 [notice] 1417318#1417318: signal 15 (SIGTERM) received from 1529195, exiting -2025/09/08 07:46:13 [debug] 1417318#1417318: wake up, sigio 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: child: 0 1417319 e:0 t:0 d:0 r:1 j:0 -2025/09/08 07:46:13 [debug] 1417318#1417318: termination cycle: 50 -2025/09/08 07:46:13 [debug] 1417318#1417318: sigsuspend -2025/09/08 07:46:13 [debug] 1417319#1417319: epoll: fd:7 ev:0001 d:00007C398F85B0F8 -2025/09/08 07:46:13 [debug] 1417319#1417319: channel handler -2025/09/08 07:46:13 [debug] 1417319#1417319: channel: 32 -2025/09/08 07:46:13 [debug] 1417319#1417319: channel command: 4 -2025/09/08 07:46:13 [debug] 1417319#1417319: channel: -2 -2025/09/08 07:46:13 [debug] 1417319#1417319: timer delta: 42052795 -2025/09/08 07:46:13 [notice] 1417319#1417319: exiting -2025/09/08 07:46:13 [debug] 1417319#1417319: flush files -2025/09/08 07:46:13 [debug] 1417319#1417319: run cleanup: 00006546982BF4E0 -2025/09/08 07:46:13 [debug] 1417319#1417319: run cleanup: 00006546982A7EC0 -2025/09/08 07:46:13 [debug] 1417319#1417319: cleanup resolver -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 00006546982C0940 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 00006546982AB720 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 000065469826E620 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 000065469826D510 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 00006546982674E0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 0000654698266420 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 0000654698265360 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 00006546982642A0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 0000654698259160 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 0000654698250130, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 000065469825D050, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 00006546982684F0, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 000065469826F630, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 0000654698273640, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 0000654698277650, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 000065469827B660, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 000065469827F670, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 0000654698283680, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 0000654698287690, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 000065469828B6A0, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 000065469828F6B0, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 00006546982936C0, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 00006546982976D0, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 000065469829B6E0, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 000065469829F6F0, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 00006546982A3700, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 00006546982A7710, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 00006546982AC8F0, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 00006546982B0900, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 00006546982B4910, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 00006546982B8920, unused: 0 -2025/09/08 07:46:13 [debug] 1417319#1417319: free: 00006546982BC930, unused: 5176 -2025/09/08 07:46:13 [notice] 1417319#1417319: exit -2025/09/08 07:46:13 [notice] 1417318#1417318: signal 17 (SIGCHLD) received from 1417319 -2025/09/08 07:46:13 [notice] 1417318#1417318: worker process 1417319 exited with code 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: shmtx forced unlock -2025/09/08 07:46:13 [debug] 1417318#1417318: wake up, sigio 3 -2025/09/08 07:46:13 [debug] 1417318#1417318: reap children -2025/09/08 07:46:13 [debug] 1417318#1417318: child: 0 1417319 e:1 t:1 d:0 r:1 j:0 -2025/09/08 07:46:13 [notice] 1417318#1417318: exit -2025/09/08 07:46:13 [debug] 1417318#1417318: close listening 0.0.0.0:9001 #5 -2025/09/08 07:46:13 [debug] 1417318#1417318: run cleanup: 00006546982A7EC0 -2025/09/08 07:46:13 [debug] 1417318#1417318: cleanup resolver -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 00006546982C0940 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 00006546982AB720 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 000065469826E620 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 000065469826D510 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 00006546982674E0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 0000654698266420 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 0000654698265360 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 00006546982642A0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 0000654698259160 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 0000654698250130, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 000065469825D050, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 00006546982684F0, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 000065469826F630, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 0000654698273640, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 0000654698277650, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 000065469827B660, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 000065469827F670, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 0000654698283680, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 0000654698287690, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 000065469828B6A0, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 000065469828F6B0, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 00006546982936C0, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 00006546982976D0, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 000065469829B6E0, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 000065469829F6F0, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 00006546982A3700, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 00006546982A7710, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 00006546982AC8F0, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 00006546982B0900, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 00006546982B4910, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 00006546982B8920, unused: 0 -2025/09/08 07:46:13 [debug] 1417318#1417318: free: 00006546982BC930, unused: 5207 -2025/09/08 07:46:16 [debug] 1529231#1529231: bind() 0.0.0.0:9001 #5 -2025/09/08 07:46:16 [debug] 1529231#1529231: counter: 0000719E0FF9A080, 1 -2025/09/08 07:46:16 [debug] 1529232#1529232: bind() 0.0.0.0:9001 #5 -2025/09/08 07:46:16 [notice] 1529232#1529232: using the "epoll" event method -2025/09/08 07:46:16 [debug] 1529232#1529232: counter: 000074D8A82A6080, 1 -2025/09/08 07:46:16 [notice] 1529232#1529232: nginx/1.18.0 (Ubuntu) -2025/09/08 07:46:16 [notice] 1529232#1529232: OS: Linux 6.12.10-76061203-generic -2025/09/08 07:46:16 [notice] 1529232#1529232: getrlimit(RLIMIT_NOFILE): 1048576:1048576 -2025/09/08 07:46:16 [debug] 1529233#1529232: write: 6, 00007FFD16613D60, 8, 0 -2025/09/08 07:46:16 [debug] 1529233#1529233: setproctitle: "nginx: master process nginx -p . -c config/local-nginx.conf" -2025/09/08 07:46:16 [notice] 1529233#1529233: start worker processes -2025/09/08 07:46:16 [debug] 1529233#1529233: channel 6:7 -2025/09/08 07:46:16 [notice] 1529233#1529233: start worker process 1529234 -2025/09/08 07:46:16 [debug] 1529233#1529233: sigsuspend -2025/09/08 07:46:16 [debug] 1529234#1529234: add cleanup: 000062E0E31CE4E0 -2025/09/08 07:46:16 [debug] 1529234#1529234: malloc: 000062E0E315ABD0:8 -2025/09/08 07:46:16 [debug] 1529234#1529234: notify eventfd: 9 -2025/09/08 07:46:16 [debug] 1529234#1529234: testing the EPOLLRDHUP flag: success -2025/09/08 07:46:16 [debug] 1529234#1529234: malloc: 000062E0E3170060:6144 -2025/09/08 07:46:16 [debug] 1529234#1529234: malloc: 000074D8A809E010:237568 -2025/09/08 07:46:16 [debug] 1529234#1529234: malloc: 000062E0E31D1210:98304 -2025/09/08 07:46:16 [debug] 1529234#1529234: malloc: 000062E0E31E9220:98304 -2025/09/08 07:46:16 [debug] 1529234#1529234: epoll add event: fd:5 op:1 ev:00002001 -2025/09/08 07:46:16 [debug] 1529234#1529234: epoll add event: fd:7 op:1 ev:00002001 -2025/09/08 07:46:16 [debug] 1529234#1529234: setproctitle: "nginx: worker process" -2025/09/08 07:46:16 [debug] 1529234#1529234: worker cycle -2025/09/08 07:46:16 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:46:38 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:46:38 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 accept: 127.0.0.1:56150 fd:6 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 event timer add: 6: 60000:585758415 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 reusable connection: 1 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:46:38 [debug] 1529234#1529234: timer delta: 21295 -2025/09/08 07:46:38 [debug] 1529234#1529234: worker cycle -2025/09/08 07:46:38 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:46:38 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http wait request handler -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 recv: eof:0, avail:-1 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 recv: fd:6 487 of 1024 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 reusable connection: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http process request line -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http uri: "/report" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http args: "" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http exten: "" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http process request header line -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http header: "Host: localhost:9001" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http header: "Accept: */*" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http header: "Content-Type: application/json" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http header: "Content-Length: 350" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http header done -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 event timer del: 6: 585758415 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 generic phase: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 rewrite phase: 1 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 test location: "/health" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 test location: "/report" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 using configuration "=/report" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http cl:350 max:104857600 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 rewrite phase: 3 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "PUT" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script regex: "^(PUT)$" -2025/09/08 07:46:38 [notice] 1529234#1529234: *1 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script if -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script if: false -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 post rewrite phase: 4 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 generic phase: 5 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 generic phase: 6 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 generic phase: 7 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 access phase: 8 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 access phase: 9 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 access phase: 10 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 post access phase: 11 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 generic phase: 12 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 generic phase: 13 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http client request body preread 350 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http request body content length filter -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http body new buf t:1 f:0 000062E0E315C129, pos 000062E0E315C129, size: 350 file: 0, size: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http init upstream, client timer: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "QUERY_STRING" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "QUERY_STRING: " -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "REQUEST_METHOD" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "PUT" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "CONTENT_TYPE" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "application/json" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "CONTENT_LENGTH" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "350" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "CONTENT_LENGTH: 350" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "SCRIPT_NAME" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "/report" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "REQUEST_URI" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "/report" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "DOCUMENT_URI" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "/report" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "./blobs" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "HTTP/1.1" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "REQUEST_SCHEME" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "http" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "CGI/1.1" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "nginx/" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "1.18.0" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "REMOTE_ADDR" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "127.0.0.1" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "REMOTE_PORT" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "56150" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "REMOTE_PORT: 56150" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "SERVER_ADDR" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "127.0.0.1" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "SERVER_PORT" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "9001" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "SERVER_NAME" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "localhost" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "REDIRECT_STATUS" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "200" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script var: "./blobs" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http script copy: "/ginxsom.fcgi" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 fastcgi param: "HTTP_CONTENT_LENGTH: 350" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http cleanup add: 000062E0E31726A0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 get rr peer, try: 1 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 stream socket 10 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #2 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 connected -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http upstream connect: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http upstream send request -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http upstream send request body -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 chain writer buf fl:0 s:592 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 chain writer buf fl:0 s:350 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 chain writer buf fl:0 s:10 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 chain writer in: 000062E0E3172710 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 writev: 952 of 952 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 chain writer out: 0000000000000000 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 event timer add: 10: 60000:585758415 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http request count:2 blk:0 -2025/09/08 07:46:38 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: worker cycle -2025/09/08 07:46:38 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:46:38 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http run request: "/report?" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http upstream check client, write event:1, "/report" -2025/09/08 07:46:38 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C8 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http upstream request: "/report?" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http upstream dummy handler -2025/09/08 07:46:38 [debug] 1529234#1529234: timer delta: 2 -2025/09/08 07:46:38 [debug] 1529234#1529234: worker cycle -2025/09/08 07:46:38 [debug] 1529234#1529234: epoll timer: 59998 -2025/09/08 07:46:38 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C8 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http upstream request: "/report?" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http upstream process header -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 malloc: 000062E0E3163140:4096 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 recv: eof:1, avail:-1 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 recv: fd:10 408 of 4096 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 01 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 07 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 01 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 94 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 04 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record length: 148 -2025/09/08 07:46:38 [error] 1529234#1529234: *1 FastCGI sent in stderr: "LOG: [2025-09-08 07:46:38] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:46:38] PUT /report - Auth: structure_invalid - Status: 400" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 01 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 07 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 01 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record length: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 01 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 06 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 01 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: CF -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 01 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record length: 207 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi parser: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi header: "Status: 400 Bad Request" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi parser: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi parser: 1 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi header done -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 HTTP/1.1 400 Bad Request -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:46:38 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 180 file: 0, size: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http write filter: l:0 f:0 s:180 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http cacheable: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http upstream process upstream -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 pipe read upstream: 1 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 pipe preread: 173 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 readv: eof:1, avail:0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 readv: 1, last:3688 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 pipe recv chain: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316322B, size: 173 file: 0, size: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 pipe length: -1 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 input buf #0 000062E0E316322B -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 01 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 06 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 01 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record length: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi closed stdout -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 01 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 03 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 01 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 08 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record byte: 00 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi record length: 8 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http fastcgi sent end request -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 input buf 000062E0E316322B 148 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 pipe write downstream: 1 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 pipe write downstream flush in -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http output filter "/report?" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http copy filter: "/report?" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http postpone filter "/report?" 000062E0E31726E0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http chunk: 148 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 180 file: 0, size: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 write new buf t:1 f:0 000062E0E3172858, pos 000062E0E3172858, size: 4 file: 0, size: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316322B, size: 148 file: 0, size: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http write filter: l:0 f:0 s:334 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http copy filter: 0 "/report?" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 pipe write downstream done -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 event timer: 10, old: 585758415, new: 585758417 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http upstream exit: 0000000000000000 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 finalize http upstream request: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 finalize http fastcgi request -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 free rr peer 1 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 close http upstream connection: 10 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 event timer del: 10: 585758415 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 reusable connection: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http upstream temp fd: -1 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http output filter "/report?" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http copy filter: "/report?" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http chunk: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 180 file: 0, size: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 write old buf t:1 f:0 000062E0E3172858, pos 000062E0E3172858, size: 4 file: 0, size: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316322B, size: 148 file: 0, size: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http write filter: l:1 f:0 s:339 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http write filter limit 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 writev: 339 of 339 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http write filter 0000000000000000 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http copy filter: 0 "/report?" -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 set http keepalive handler -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http close request -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http log handler -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 free: 000062E0E3163140 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 free: 000062E0E317B500, unused: 3 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 free: 000062E0E3171870, unused: 6 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 free: 000062E0E3164150, unused: 2474 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 free: 000062E0E315C0A0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 hc free: 0000000000000000 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 hc busy: 0000000000000000 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 tcp_nodelay -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 reusable connection: 1 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 event timer add: 6: 65000:585763417 -2025/09/08 07:46:38 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: worker cycle -2025/09/08 07:46:38 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:46:38 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 http keepalive handler -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 recv: eof:1, avail:-1 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 recv: fd:6 0 of 1024 -2025/09/08 07:46:38 [info] 1529234#1529234: *1 client 127.0.0.1 closed keepalive connection -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 close http connection: 6 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 event timer del: 6: 585763417 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 reusable connection: 0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 free: 000062E0E315C0A0 -2025/09/08 07:46:38 [debug] 1529234#1529234: *1 free: 000062E0E3159840, unused: 120 -2025/09/08 07:46:38 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:46:38 [debug] 1529234#1529234: worker cycle -2025/09/08 07:46:38 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:07 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 accept: 127.0.0.1:44754 fd:6 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 event timer add: 6: 60000:585847464 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 reusable connection: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:07 [debug] 1529234#1529234: timer delta: 89046 -2025/09/08 07:48:07 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http wait request handler -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 recv: eof:0, avail:-1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 recv: fd:6 604 of 1024 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 reusable connection: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http process request line -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http uri: "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http args: "" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http exten: "" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http process request header line -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http header: "Host: localhost:9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http header: "Accept: */*" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http header: "Content-Type: application/json" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http header: "Content-Length: 467" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http header done -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 event timer del: 6: 585847464 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 generic phase: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 rewrite phase: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 test location: "/health" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 test location: "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 using configuration "=/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http cl:467 max:104857600 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 rewrite phase: 3 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "PUT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script regex: "^(PUT)$" -2025/09/08 07:48:07 [notice] 1529234#1529234: *3 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script if -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script if: false -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 post rewrite phase: 4 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 generic phase: 5 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 generic phase: 6 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 generic phase: 7 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 access phase: 8 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 access phase: 9 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 access phase: 10 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 post access phase: 11 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 generic phase: 12 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 generic phase: 13 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http client request body preread 467 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http request body content length filter -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http body new buf t:1 f:0 000062E0E315C129, pos 000062E0E315C129, size: 467 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http init upstream, client timer: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "QUERY_STRING" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "PUT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "application/json" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "467" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "CONTENT_LENGTH: 467" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "REQUEST_URI" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "./blobs" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "HTTP/1.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "http" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "CGI/1.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "nginx/" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "1.18.0" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "127.0.0.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "REMOTE_PORT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "44754" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "REMOTE_PORT: 44754" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "SERVER_ADDR" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "127.0.0.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "SERVER_PORT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "SERVER_NAME" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "localhost" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "200" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script var: "./blobs" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 fastcgi param: "HTTP_CONTENT_LENGTH: 467" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http cleanup add: 000062E0E31726A0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 get rr peer, try: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 stream socket 10 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #4 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 connected -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http upstream connect: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http upstream send request -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http upstream send request body -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 chain writer buf fl:0 s:592 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 chain writer buf fl:0 s:467 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 chain writer buf fl:0 s:13 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 chain writer in: 000062E0E3172710 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 writev: 1072 of 1072 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 chain writer out: 0000000000000000 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 event timer add: 10: 60000:585847464 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http request count:2 blk:0 -2025/09/08 07:48:07 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http run request: "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http upstream check client, write event:1, "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C9 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http upstream request: "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http upstream dummy handler -2025/09/08 07:48:07 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll timer: 59999 -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C9 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http upstream request: "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http upstream process header -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 recv: eof:1, avail:-1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 recv: fd:10 328 of 4096 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 07 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 90 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record length: 144 -2025/09/08 07:48:07 [error] 1529234#1529234: *3 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:07] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:07] PUT /report - Auth: authenticated - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 07 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record length: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 06 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 84 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 04 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record length: 132 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi parser: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi header: "Status: 200 OK" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi parser: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi parser: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi header done -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:07 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http write filter: l:0 f:0 s:260 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http cacheable: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http upstream process upstream -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 pipe read upstream: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 pipe preread: 110 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 readv: eof:1, avail:0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 readv: 1, last:3768 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 pipe recv chain: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 110 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 pipe length: -1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 input buf #0 000062E0E316321A -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 06 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record length: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi closed stdout -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 03 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 08 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi record length: 8 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http fastcgi sent end request -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 input buf 000062E0E316321A 82 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 pipe write downstream: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 pipe write downstream flush in -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http output filter "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http copy filter: "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http postpone filter "/report?" 000062E0E31726E0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http chunk: 82 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 write new buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http write filter: l:0 f:0 s:348 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http copy filter: 0 "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 pipe write downstream done -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 event timer: 10, old: 585847464, new: 585847471 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http upstream exit: 0000000000000000 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 finalize http upstream request: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 finalize http fastcgi request -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 free rr peer 1 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 close http upstream connection: 10 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 event timer del: 10: 585847464 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 reusable connection: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http upstream temp fd: -1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http output filter "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http copy filter: "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http chunk: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 write old buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http write filter: l:1 f:0 s:353 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http write filter limit 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 writev: 353 of 353 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http write filter 0000000000000000 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http copy filter: 0 "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 set http keepalive handler -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http close request -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http log handler -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 free: 000062E0E3163140 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 free: 000062E0E3171870, unused: 14 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 free: 000062E0E3164150, unused: 2394 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 free: 000062E0E315C0A0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 hc free: 0000000000000000 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 hc busy: 0000000000000000 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 tcp_nodelay -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 reusable connection: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 event timer add: 6: 65000:585852471 -2025/09/08 07:48:07 [debug] 1529234#1529234: timer delta: 6 -2025/09/08 07:48:07 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 http keepalive handler -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 recv: eof:1, avail:-1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 recv: fd:6 0 of 1024 -2025/09/08 07:48:07 [info] 1529234#1529234: *3 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 close http connection: 6 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 event timer del: 6: 585852471 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 reusable connection: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 free: 000062E0E315C0A0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *3 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:07 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:07 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 accept: 127.0.0.1:44764 fd:6 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 event timer add: 6: 60000:585847724 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 reusable connection: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:07 [debug] 1529234#1529234: timer delta: 252 -2025/09/08 07:48:07 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http wait request handler -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 recv: eof:0, avail:-1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 recv: fd:6 677 of 1024 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 reusable connection: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http process request line -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http uri: "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http args: "" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http exten: "" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http process request header line -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http header: "Host: localhost:9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http header: "Accept: */*" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http header: "Content-Type: application/json" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http header: "Content-Length: 540" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http header done -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 event timer del: 6: 585847724 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 generic phase: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 rewrite phase: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 test location: "/health" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 test location: "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 using configuration "=/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http cl:540 max:104857600 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 rewrite phase: 3 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "PUT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script regex: "^(PUT)$" -2025/09/08 07:48:07 [notice] 1529234#1529234: *5 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script if -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script if: false -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 post rewrite phase: 4 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 generic phase: 5 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 generic phase: 6 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 generic phase: 7 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 access phase: 8 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 access phase: 9 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 access phase: 10 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 post access phase: 11 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 generic phase: 12 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 generic phase: 13 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http client request body preread 540 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http request body content length filter -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http body new buf t:1 f:0 000062E0E315C129, pos 000062E0E315C129, size: 540 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http init upstream, client timer: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "QUERY_STRING" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "PUT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "application/json" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "540" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "CONTENT_LENGTH: 540" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "REQUEST_URI" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "./blobs" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "HTTP/1.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "http" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "CGI/1.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "nginx/" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "1.18.0" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "127.0.0.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "REMOTE_PORT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "44764" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "REMOTE_PORT: 44764" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "SERVER_ADDR" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "127.0.0.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "SERVER_PORT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "SERVER_NAME" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "localhost" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "200" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script var: "./blobs" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 fastcgi param: "HTTP_CONTENT_LENGTH: 540" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http cleanup add: 000062E0E31726A0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 get rr peer, try: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 stream socket 10 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #6 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 connected -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http upstream connect: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http upstream send request -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http upstream send request body -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 chain writer buf fl:0 s:592 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 chain writer buf fl:0 s:540 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 chain writer buf fl:0 s:12 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 chain writer in: 000062E0E3172710 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 writev: 1144 of 1144 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 chain writer out: 0000000000000000 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 event timer add: 10: 60000:585847724 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http request count:2 blk:0 -2025/09/08 07:48:07 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http run request: "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http upstream check client, write event:1, "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C8 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http upstream request: "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http upstream dummy handler -2025/09/08 07:48:07 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll timer: 59999 -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C8 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http upstream request: "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http upstream process header -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 recv: eof:1, avail:-1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 recv: fd:10 328 of 4096 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 07 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 90 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record length: 144 -2025/09/08 07:48:07 [error] 1529234#1529234: *5 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:07] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:07] PUT /report - Auth: authenticated - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 07 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record length: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 06 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 84 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 04 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record length: 132 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi parser: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi header: "Status: 200 OK" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi parser: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi parser: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi header done -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:07 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http write filter: l:0 f:0 s:260 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http cacheable: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http upstream process upstream -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 pipe read upstream: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 pipe preread: 110 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 readv: eof:1, avail:0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 readv: 1, last:3768 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 pipe recv chain: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 110 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 pipe length: -1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 input buf #0 000062E0E316321A -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 06 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record length: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi closed stdout -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 03 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 08 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi record length: 8 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http fastcgi sent end request -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 input buf 000062E0E316321A 82 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 pipe write downstream: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 pipe write downstream flush in -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http output filter "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http copy filter: "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http postpone filter "/report?" 000062E0E31726E0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http chunk: 82 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 write new buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http write filter: l:0 f:0 s:348 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http copy filter: 0 "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 pipe write downstream done -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 event timer: 10, old: 585847724, new: 585847728 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http upstream exit: 0000000000000000 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 finalize http upstream request: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 finalize http fastcgi request -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 free rr peer 1 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 close http upstream connection: 10 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 event timer del: 10: 585847724 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 reusable connection: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http upstream temp fd: -1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http output filter "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http copy filter: "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http chunk: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 write old buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http write filter: l:1 f:0 s:353 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http write filter limit 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 writev: 353 of 353 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http write filter 0000000000000000 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http copy filter: 0 "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 set http keepalive handler -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http close request -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http log handler -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 free: 000062E0E3163140 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 free: 000062E0E3171870, unused: 14 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 free: 000062E0E3164150, unused: 2394 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 free: 000062E0E315C0A0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 hc free: 0000000000000000 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 hc busy: 0000000000000000 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 tcp_nodelay -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 reusable connection: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 event timer add: 6: 65000:585852728 -2025/09/08 07:48:07 [debug] 1529234#1529234: timer delta: 3 -2025/09/08 07:48:07 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 http keepalive handler -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 recv: eof:1, avail:-1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 recv: fd:6 0 of 1024 -2025/09/08 07:48:07 [info] 1529234#1529234: *5 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 close http connection: 6 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 event timer del: 6: 585852728 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 reusable connection: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 free: 000062E0E315C0A0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *5 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:07 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:07 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 accept: 127.0.0.1:44772 fd:6 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 event timer add: 6: 60000:585848069 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 reusable connection: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:07 [debug] 1529234#1529234: timer delta: 340 -2025/09/08 07:48:07 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http wait request handler -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 recv: eof:0, avail:-1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 recv: fd:6 586 of 1024 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 reusable connection: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http process request line -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http uri: "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http args: "" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http exten: "" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http process request header line -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http header: "Host: localhost:9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http header: "Accept: */*" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http header: "Content-Type: application/json" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http header: "Content-Length: 449" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http header done -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 event timer del: 6: 585848069 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 generic phase: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 rewrite phase: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 test location: "/health" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 test location: "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 using configuration "=/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http cl:449 max:104857600 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 rewrite phase: 3 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "PUT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script regex: "^(PUT)$" -2025/09/08 07:48:07 [notice] 1529234#1529234: *7 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script if -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script if: false -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 post rewrite phase: 4 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 generic phase: 5 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 generic phase: 6 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 generic phase: 7 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 access phase: 8 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 access phase: 9 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 access phase: 10 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 post access phase: 11 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 generic phase: 12 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 generic phase: 13 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http client request body preread 449 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http request body content length filter -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http body new buf t:1 f:0 000062E0E315C129, pos 000062E0E315C129, size: 449 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http init upstream, client timer: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "QUERY_STRING" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "PUT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "application/json" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "449" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "CONTENT_LENGTH: 449" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "REQUEST_URI" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "./blobs" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "HTTP/1.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "http" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "CGI/1.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "nginx/" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "1.18.0" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "127.0.0.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "REMOTE_PORT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "44772" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "REMOTE_PORT: 44772" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "SERVER_ADDR" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "127.0.0.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "SERVER_PORT" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "SERVER_NAME" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "localhost" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "200" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script var: "./blobs" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 fastcgi param: "HTTP_CONTENT_LENGTH: 449" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http cleanup add: 000062E0E31726A0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 get rr peer, try: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 stream socket 10 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #8 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 connected -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http upstream connect: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http upstream send request -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http upstream send request body -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 chain writer buf fl:0 s:592 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 chain writer buf fl:0 s:449 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 chain writer buf fl:0 s:15 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 chain writer in: 000062E0E3172710 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 writev: 1056 of 1056 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 chain writer out: 0000000000000000 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 event timer add: 10: 60000:585848069 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http request count:2 blk:0 -2025/09/08 07:48:07 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http run request: "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http upstream check client, write event:1, "/report" -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C9 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http upstream request: "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http upstream dummy handler -2025/09/08 07:48:07 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll timer: 59999 -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C9 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http upstream request: "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http upstream process header -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 recv: eof:1, avail:-1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 recv: fd:10 328 of 4096 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 07 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 90 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record length: 144 -2025/09/08 07:48:07 [error] 1529234#1529234: *7 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:07] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:07] PUT /report - Auth: authenticated - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 07 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record length: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 06 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 83 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 05 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record length: 131 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi parser: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi header: "Status: 200 OK" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi parser: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi parser: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi header done -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:07 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http write filter: l:0 f:0 s:260 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http cacheable: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http upstream process upstream -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 pipe read upstream: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 pipe preread: 110 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 readv: eof:1, avail:0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 readv: 1, last:3768 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 pipe recv chain: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 110 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 pipe length: -1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 input buf #0 000062E0E316321A -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 06 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record length: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi closed stdout -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 03 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 01 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 08 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record byte: 00 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi record length: 8 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http fastcgi sent end request -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 input buf 000062E0E316321A 81 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 pipe write downstream: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 pipe write downstream flush in -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http output filter "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http copy filter: "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http postpone filter "/report?" 000062E0E31726E0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http chunk: 81 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 write new buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 81 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http write filter: l:0 f:0 s:347 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http copy filter: 0 "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 pipe write downstream done -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 event timer: 10, old: 585848069, new: 585848073 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http upstream exit: 0000000000000000 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 finalize http upstream request: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 finalize http fastcgi request -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 free rr peer 1 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 close http upstream connection: 10 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 event timer del: 10: 585848069 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 reusable connection: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http upstream temp fd: -1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http output filter "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http copy filter: "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http chunk: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 write old buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 81 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http write filter: l:1 f:0 s:352 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http write filter limit 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 writev: 352 of 352 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http write filter 0000000000000000 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http copy filter: 0 "/report?" -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 set http keepalive handler -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http close request -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http log handler -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 free: 000062E0E3163140 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 free: 000062E0E3171870, unused: 14 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 free: 000062E0E3164150, unused: 2394 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 free: 000062E0E315C0A0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 hc free: 0000000000000000 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 hc busy: 0000000000000000 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 tcp_nodelay -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 reusable connection: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 event timer add: 6: 65000:585853073 -2025/09/08 07:48:07 [debug] 1529234#1529234: timer delta: 3 -2025/09/08 07:48:07 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 http keepalive handler -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 recv: eof:1, avail:-1 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 recv: fd:6 0 of 1024 -2025/09/08 07:48:07 [info] 1529234#1529234: *7 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 close http connection: 6 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 event timer del: 6: 585853073 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 reusable connection: 0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 free: 000062E0E315C0A0 -2025/09/08 07:48:07 [debug] 1529234#1529234: *7 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:07 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:07 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:07 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:08 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 accept: 127.0.0.1:44782 fd:6 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 event timer add: 6: 60000:585848355 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 reusable connection: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 281 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http wait request handler -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 recv: eof:0, avail:-1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 recv: fd:6 588 of 1024 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 reusable connection: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http process request line -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http uri: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http args: "" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http exten: "" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http process request header line -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http header: "Host: localhost:9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http header: "Accept: */*" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http header: "Content-Type: application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http header: "Content-Length: 451" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http header done -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 event timer del: 6: 585848355 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 generic phase: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 rewrite phase: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 test location: "/health" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 test location: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 using configuration "=/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http cl:451 max:104857600 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 rewrite phase: 3 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "PUT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script regex: "^(PUT)$" -2025/09/08 07:48:08 [notice] 1529234#1529234: *9 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script if -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script if: false -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 post rewrite phase: 4 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 generic phase: 5 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 generic phase: 6 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 generic phase: 7 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 access phase: 8 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 access phase: 9 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 access phase: 10 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 post access phase: 11 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 generic phase: 12 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 generic phase: 13 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http client request body preread 451 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http request body content length filter -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http body new buf t:1 f:0 000062E0E315C129, pos 000062E0E315C129, size: 451 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http init upstream, client timer: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "QUERY_STRING" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "PUT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "451" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "CONTENT_LENGTH: 451" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "REQUEST_URI" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "./blobs" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "HTTP/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "http" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "CGI/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "nginx/" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "1.18.0" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "127.0.0.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "REMOTE_PORT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "44782" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "REMOTE_PORT: 44782" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "SERVER_ADDR" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "127.0.0.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "SERVER_PORT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "SERVER_NAME" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "localhost" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "200" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script var: "./blobs" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 fastcgi param: "HTTP_CONTENT_LENGTH: 451" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http cleanup add: 000062E0E31726A0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 get rr peer, try: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 stream socket 10 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #10 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 connected -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http upstream connect: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http upstream send request -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http upstream send request body -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 chain writer buf fl:0 s:592 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 chain writer buf fl:0 s:451 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 chain writer buf fl:0 s:13 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 chain writer in: 000062E0E3172710 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 writev: 1056 of 1056 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 chain writer out: 0000000000000000 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 event timer add: 10: 60000:585848356 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http request count:2 blk:0 -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http run request: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http upstream check client, write event:1, "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C8 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http upstream request: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http upstream dummy handler -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: 59999 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C8 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http upstream request: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http upstream process header -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 recv: eof:1, avail:-1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 recv: fd:10 328 of 4096 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 07 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 90 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record length: 144 -2025/09/08 07:48:08 [error] 1529234#1529234: *9 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:08] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:08] PUT /report - Auth: authenticated - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 07 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record length: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 06 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 84 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 04 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record length: 132 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi parser: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi header: "Status: 200 OK" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi parser: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi parser: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi header done -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:08 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http write filter: l:0 f:0 s:260 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http cacheable: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http upstream process upstream -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 pipe read upstream: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 pipe preread: 110 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 readv: eof:1, avail:0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 readv: 1, last:3768 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 pipe recv chain: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 110 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 pipe length: -1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 input buf #0 000062E0E316321A -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 06 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record length: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi closed stdout -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 03 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 08 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi record length: 8 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http fastcgi sent end request -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 input buf 000062E0E316321A 82 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 pipe write downstream: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 pipe write downstream flush in -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http output filter "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http copy filter: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http postpone filter "/report?" 000062E0E31726E0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http chunk: 82 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 write new buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http write filter: l:0 f:0 s:348 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http copy filter: 0 "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 pipe write downstream done -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 event timer: 10, old: 585848356, new: 585848360 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http upstream exit: 0000000000000000 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 finalize http upstream request: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 finalize http fastcgi request -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 free rr peer 1 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 close http upstream connection: 10 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 event timer del: 10: 585848356 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 reusable connection: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http upstream temp fd: -1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http output filter "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http copy filter: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http chunk: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 write old buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http write filter: l:1 f:0 s:353 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http write filter limit 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 writev: 353 of 353 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http write filter 0000000000000000 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http copy filter: 0 "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 set http keepalive handler -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http close request -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http log handler -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 free: 000062E0E3163140 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 free: 000062E0E3171870, unused: 14 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 free: 000062E0E3164150, unused: 2394 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 free: 000062E0E315C0A0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 hc free: 0000000000000000 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 hc busy: 0000000000000000 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 tcp_nodelay -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 reusable connection: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 event timer add: 6: 65000:585853360 -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 3 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 http keepalive handler -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 recv: eof:1, avail:-1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 recv: fd:6 0 of 1024 -2025/09/08 07:48:08 [info] 1529234#1529234: *9 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 close http connection: 6 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 event timer del: 6: 585853360 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 reusable connection: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 free: 000062E0E315C0A0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *9 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:08 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 accept: 127.0.0.1:44792 fd:6 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 event timer add: 6: 60000:585848599 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 reusable connection: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 239 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http wait request handler -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 recv: eof:0, avail:-1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 recv: fd:6 592 of 1024 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 reusable connection: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http process request line -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http uri: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http args: "" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http exten: "" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http process request header line -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http header: "Host: localhost:9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http header: "Accept: */*" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http header: "Content-Type: application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http header: "Content-Length: 455" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http header done -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 event timer del: 6: 585848599 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 generic phase: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 rewrite phase: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 test location: "/health" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 test location: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 using configuration "=/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http cl:455 max:104857600 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 rewrite phase: 3 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "PUT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script regex: "^(PUT)$" -2025/09/08 07:48:08 [notice] 1529234#1529234: *11 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script if -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script if: false -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 post rewrite phase: 4 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 generic phase: 5 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 generic phase: 6 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 generic phase: 7 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 access phase: 8 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 access phase: 9 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 access phase: 10 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 post access phase: 11 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 generic phase: 12 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 generic phase: 13 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http client request body preread 455 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http request body content length filter -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http body new buf t:1 f:0 000062E0E315C129, pos 000062E0E315C129, size: 455 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http init upstream, client timer: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "QUERY_STRING" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "PUT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "455" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "CONTENT_LENGTH: 455" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "REQUEST_URI" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "./blobs" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "HTTP/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "http" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "CGI/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "nginx/" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "1.18.0" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "127.0.0.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "REMOTE_PORT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "44792" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "REMOTE_PORT: 44792" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "SERVER_ADDR" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "127.0.0.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "SERVER_PORT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "SERVER_NAME" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "localhost" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "200" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script var: "./blobs" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 fastcgi param: "HTTP_CONTENT_LENGTH: 455" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http cleanup add: 000062E0E31726A0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 get rr peer, try: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 stream socket 10 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #12 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 connected -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http upstream connect: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http upstream send request -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http upstream send request body -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 chain writer buf fl:0 s:592 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 chain writer buf fl:0 s:455 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 chain writer buf fl:0 s:9 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 chain writer in: 000062E0E3172710 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 writev: 1056 of 1056 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 chain writer out: 0000000000000000 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 event timer add: 10: 60000:585848599 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http request count:2 blk:0 -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http run request: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http upstream check client, write event:1, "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C9 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http upstream request: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http upstream dummy handler -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 2 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: 59998 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C9 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http upstream request: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http upstream process header -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 recv: eof:1, avail:-1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 recv: fd:10 328 of 4096 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 07 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 90 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record length: 144 -2025/09/08 07:48:08 [error] 1529234#1529234: *11 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:08] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:08] PUT /report - Auth: authenticated - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 07 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record length: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 06 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 83 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 05 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record length: 131 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi parser: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi header: "Status: 200 OK" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi parser: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi parser: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi header done -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:08 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http write filter: l:0 f:0 s:260 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http cacheable: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http upstream process upstream -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 pipe read upstream: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 pipe preread: 110 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 readv: eof:1, avail:0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 readv: 1, last:3768 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 pipe recv chain: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 110 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 pipe length: -1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 input buf #0 000062E0E316321A -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 06 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record length: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi closed stdout -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 03 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 08 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi record length: 8 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http fastcgi sent end request -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 input buf 000062E0E316321A 81 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 pipe write downstream: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 pipe write downstream flush in -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http output filter "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http copy filter: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http postpone filter "/report?" 000062E0E31726E0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http chunk: 81 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 write new buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 81 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http write filter: l:0 f:0 s:347 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http copy filter: 0 "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 pipe write downstream done -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 event timer: 10, old: 585848599, new: 585848604 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http upstream exit: 0000000000000000 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 finalize http upstream request: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 finalize http fastcgi request -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 free rr peer 1 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 close http upstream connection: 10 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 event timer del: 10: 585848599 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 reusable connection: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http upstream temp fd: -1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http output filter "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http copy filter: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http chunk: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 write old buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 81 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http write filter: l:1 f:0 s:352 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http write filter limit 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 writev: 352 of 352 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http write filter 0000000000000000 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http copy filter: 0 "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 set http keepalive handler -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http close request -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http log handler -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 free: 000062E0E3163140 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 free: 000062E0E3171870, unused: 14 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 free: 000062E0E3164150, unused: 2394 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 free: 000062E0E315C0A0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 hc free: 0000000000000000 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 hc busy: 0000000000000000 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 tcp_nodelay -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 reusable connection: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 event timer add: 6: 65000:585853604 -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 3 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 http keepalive handler -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 recv: eof:1, avail:-1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 recv: fd:6 0 of 1024 -2025/09/08 07:48:08 [info] 1529234#1529234: *11 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 close http connection: 6 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 event timer del: 6: 585853604 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 reusable connection: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 free: 000062E0E315C0A0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *11 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:08 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 accept: 127.0.0.1:44806 fd:6 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 event timer add: 6: 60000:585848873 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 reusable connection: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 268 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http wait request handler -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 recv: eof:0, avail:-1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 recv: fd:6 588 of 1024 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 reusable connection: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http process request line -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http uri: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http args: "" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http exten: "" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http process request header line -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http header: "Host: localhost:9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http header: "Accept: */*" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http header: "Content-Type: application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http header: "Content-Length: 451" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http header done -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 event timer del: 6: 585848873 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 generic phase: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 rewrite phase: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 test location: "/health" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 test location: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 using configuration "=/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http cl:451 max:104857600 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 rewrite phase: 3 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "PUT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script regex: "^(PUT)$" -2025/09/08 07:48:08 [notice] 1529234#1529234: *13 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script if -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script if: false -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 post rewrite phase: 4 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 generic phase: 5 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 generic phase: 6 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 generic phase: 7 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 access phase: 8 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 access phase: 9 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 access phase: 10 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 post access phase: 11 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 generic phase: 12 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 generic phase: 13 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http client request body preread 451 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http request body content length filter -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http body new buf t:1 f:0 000062E0E315C129, pos 000062E0E315C129, size: 451 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http init upstream, client timer: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "QUERY_STRING" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "PUT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "451" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "CONTENT_LENGTH: 451" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "REQUEST_URI" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "./blobs" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "HTTP/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "http" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "CGI/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "nginx/" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "1.18.0" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "127.0.0.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "REMOTE_PORT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "44806" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "REMOTE_PORT: 44806" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "SERVER_ADDR" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "127.0.0.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "SERVER_PORT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "SERVER_NAME" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "localhost" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "200" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script var: "./blobs" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 fastcgi param: "HTTP_CONTENT_LENGTH: 451" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http cleanup add: 000062E0E31726A0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 get rr peer, try: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 stream socket 10 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #14 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 connected -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http upstream connect: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http upstream send request -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http upstream send request body -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 chain writer buf fl:0 s:592 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 chain writer buf fl:0 s:451 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 chain writer buf fl:0 s:13 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 chain writer in: 000062E0E3172710 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 writev: 1056 of 1056 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 chain writer out: 0000000000000000 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 event timer add: 10: 60000:585848873 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http request count:2 blk:0 -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http run request: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http upstream check client, write event:1, "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C8 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http upstream request: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http upstream dummy handler -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: 59999 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C8 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http upstream request: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http upstream process header -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 recv: eof:1, avail:-1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 recv: fd:10 328 of 4096 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 07 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 90 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record length: 144 -2025/09/08 07:48:08 [error] 1529234#1529234: *13 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:08] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:08] PUT /report - Auth: authenticated - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 07 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record length: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 06 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 84 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 04 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record length: 132 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi parser: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi header: "Status: 200 OK" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi parser: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi parser: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi header done -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:08 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http write filter: l:0 f:0 s:260 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http cacheable: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http upstream process upstream -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 pipe read upstream: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 pipe preread: 110 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 readv: eof:1, avail:0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 readv: 1, last:3768 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 pipe recv chain: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 110 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 pipe length: -1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 input buf #0 000062E0E316321A -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 06 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record length: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi closed stdout -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 03 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 08 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi record length: 8 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http fastcgi sent end request -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 input buf 000062E0E316321A 82 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 pipe write downstream: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 pipe write downstream flush in -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http output filter "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http copy filter: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http postpone filter "/report?" 000062E0E31726E0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http chunk: 82 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 write new buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http write filter: l:0 f:0 s:348 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http copy filter: 0 "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 pipe write downstream done -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 event timer: 10, old: 585848873, new: 585848877 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http upstream exit: 0000000000000000 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 finalize http upstream request: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 finalize http fastcgi request -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 free rr peer 1 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 close http upstream connection: 10 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 event timer del: 10: 585848873 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 reusable connection: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http upstream temp fd: -1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http output filter "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http copy filter: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http chunk: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 write old buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http write filter: l:1 f:0 s:353 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http write filter limit 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 writev: 353 of 353 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http write filter 0000000000000000 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http copy filter: 0 "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 set http keepalive handler -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http close request -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http log handler -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 free: 000062E0E3163140 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 free: 000062E0E3171870, unused: 14 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 free: 000062E0E3164150, unused: 2394 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 free: 000062E0E315C0A0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 hc free: 0000000000000000 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 hc busy: 0000000000000000 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 tcp_nodelay -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 reusable connection: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 event timer add: 6: 65000:585853877 -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 3 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 http keepalive handler -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 recv: eof:1, avail:-1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 recv: fd:6 0 of 1024 -2025/09/08 07:48:08 [info] 1529234#1529234: *13 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 close http connection: 6 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 event timer del: 6: 585853877 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 reusable connection: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 free: 000062E0E315C0A0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *13 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:08 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 accept: 127.0.0.1:44808 fd:6 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 event timer add: 6: 60000:585849150 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 reusable connection: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 273 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http wait request handler -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 recv: eof:0, avail:-1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 recv: fd:6 582 of 1024 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 reusable connection: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http process request line -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http uri: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http args: "" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http exten: "" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http process request header line -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http header: "Host: localhost:9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http header: "Accept: */*" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http header: "Content-Type: application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http header: "Content-Length: 445" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http header done -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 event timer del: 6: 585849150 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 generic phase: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 rewrite phase: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 test location: "/health" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 test location: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 using configuration "=/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http cl:445 max:104857600 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 rewrite phase: 3 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "PUT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script regex: "^(PUT)$" -2025/09/08 07:48:08 [notice] 1529234#1529234: *15 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script if -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script if: false -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 post rewrite phase: 4 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 generic phase: 5 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 generic phase: 6 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 generic phase: 7 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 access phase: 8 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 access phase: 9 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 access phase: 10 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 post access phase: 11 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 generic phase: 12 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 generic phase: 13 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http client request body preread 445 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http request body content length filter -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http body new buf t:1 f:0 000062E0E315C129, pos 000062E0E315C129, size: 445 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http init upstream, client timer: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "QUERY_STRING" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "PUT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "445" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "CONTENT_LENGTH: 445" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "REQUEST_URI" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "./blobs" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "HTTP/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "http" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "CGI/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "nginx/" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "1.18.0" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "127.0.0.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "REMOTE_PORT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "44808" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "REMOTE_PORT: 44808" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "SERVER_ADDR" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "127.0.0.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "SERVER_PORT" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "SERVER_NAME" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "localhost" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "200" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script var: "./blobs" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 fastcgi param: "HTTP_CONTENT_LENGTH: 445" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http cleanup add: 000062E0E31726A0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 get rr peer, try: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 stream socket 10 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 connected -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http upstream connect: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http upstream send request -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http upstream send request body -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 chain writer buf fl:0 s:592 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 chain writer buf fl:0 s:445 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 chain writer buf fl:0 s:11 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 chain writer in: 000062E0E3172710 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 writev: 1048 of 1048 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 chain writer out: 0000000000000000 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 event timer add: 10: 60000:585849150 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http request count:2 blk:0 -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http run request: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http upstream check client, write event:1, "/report" -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C9 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http upstream request: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http upstream dummy handler -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: 59999 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C9 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http upstream request: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http upstream process header -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 recv: eof:1, avail:-1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 recv: fd:10 328 of 4096 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 07 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 90 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record length: 144 -2025/09/08 07:48:08 [error] 1529234#1529234: *15 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:08] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:08] PUT /report - Auth: authenticated - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 07 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record length: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 06 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 84 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 04 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record length: 132 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi parser: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi header: "Status: 200 OK" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi parser: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi parser: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi header done -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:08 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http write filter: l:0 f:0 s:260 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http cacheable: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http upstream process upstream -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 pipe read upstream: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 pipe preread: 110 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 readv: eof:1, avail:0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 readv: 1, last:3768 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 pipe recv chain: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 110 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 pipe length: -1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 input buf #0 000062E0E316321A -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 06 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record length: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi closed stdout -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 03 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 01 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 08 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record byte: 00 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi record length: 8 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http fastcgi sent end request -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 input buf 000062E0E316321A 82 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 pipe write downstream: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 pipe write downstream flush in -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http output filter "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http copy filter: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http postpone filter "/report?" 000062E0E31726E0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http chunk: 82 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 write new buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http write filter: l:0 f:0 s:348 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http copy filter: 0 "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 pipe write downstream done -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 event timer: 10, old: 585849150, new: 585849154 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http upstream exit: 0000000000000000 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 finalize http upstream request: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 finalize http fastcgi request -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 free rr peer 1 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 close http upstream connection: 10 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 event timer del: 10: 585849150 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 reusable connection: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http upstream temp fd: -1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http output filter "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http copy filter: "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http chunk: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 write old buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http write filter: l:1 f:0 s:353 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http write filter limit 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 writev: 353 of 353 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http write filter 0000000000000000 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http copy filter: 0 "/report?" -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 set http keepalive handler -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http close request -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http log handler -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 free: 000062E0E3163140 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 free: 000062E0E3171870, unused: 14 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 free: 000062E0E3164150, unused: 2394 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 free: 000062E0E315C0A0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 hc free: 0000000000000000 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 hc busy: 0000000000000000 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 tcp_nodelay -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 reusable connection: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 event timer add: 6: 65000:585854154 -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 3 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 http keepalive handler -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 recv: eof:1, avail:-1 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 recv: fd:6 0 of 1024 -2025/09/08 07:48:08 [info] 1529234#1529234: *15 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 close http connection: 6 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 event timer del: 6: 585854154 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 reusable connection: 0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 free: 000062E0E315C0A0 -2025/09/08 07:48:08 [debug] 1529234#1529234: *15 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:08 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:08 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:08 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:09 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 accept: 127.0.0.1:44822 fd:6 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 event timer add: 6: 60000:585849475 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 reusable connection: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 320 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http wait request handler -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 recv: eof:0, avail:-1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 recv: fd:6 600 of 1024 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 reusable connection: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http process request line -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http uri: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http args: "" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http exten: "" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http process request header line -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http header: "Host: localhost:9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http header: "Accept: */*" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http header: "Content-Type: application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http header: "Content-Length: 463" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http header done -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 event timer del: 6: 585849475 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 generic phase: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 rewrite phase: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 test location: "/health" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 test location: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 using configuration "=/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http cl:463 max:104857600 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 rewrite phase: 3 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "PUT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script regex: "^(PUT)$" -2025/09/08 07:48:09 [notice] 1529234#1529234: *17 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script if -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script if: false -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 post rewrite phase: 4 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 generic phase: 5 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 generic phase: 6 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 generic phase: 7 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 access phase: 8 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 access phase: 9 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 access phase: 10 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 post access phase: 11 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 generic phase: 12 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 generic phase: 13 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http client request body preread 463 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http request body content length filter -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http body new buf t:1 f:0 000062E0E315C129, pos 000062E0E315C129, size: 463 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http init upstream, client timer: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "QUERY_STRING" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "PUT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "463" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "CONTENT_LENGTH: 463" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "REQUEST_URI" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "./blobs" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "HTTP/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "http" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "CGI/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "nginx/" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "1.18.0" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "127.0.0.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "REMOTE_PORT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "44822" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "REMOTE_PORT: 44822" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "SERVER_ADDR" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "127.0.0.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "SERVER_PORT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "SERVER_NAME" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "localhost" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "200" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script var: "./blobs" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 fastcgi param: "HTTP_CONTENT_LENGTH: 463" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http cleanup add: 000062E0E31726A0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 get rr peer, try: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 stream socket 10 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #18 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 connected -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http upstream connect: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http upstream send request -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http upstream send request body -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 chain writer buf fl:0 s:592 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 chain writer buf fl:0 s:463 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 chain writer buf fl:0 s:9 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 chain writer in: 000062E0E3172710 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 writev: 1064 of 1064 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 chain writer out: 0000000000000000 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 event timer add: 10: 60000:585849475 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http request count:2 blk:0 -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http run request: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http upstream check client, write event:1, "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C8 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http upstream request: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http upstream dummy handler -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 59999 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C8 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http upstream request: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http upstream process header -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 recv: eof:1, avail:-1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 recv: fd:10 328 of 4096 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 07 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 90 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record length: 144 -2025/09/08 07:48:09 [error] 1529234#1529234: *17 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:09] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:09] PUT /report - Auth: authenticated - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 07 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record length: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 06 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 84 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 04 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record length: 132 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi parser: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi header: "Status: 200 OK" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi parser: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi parser: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi header done -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:09 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http write filter: l:0 f:0 s:260 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http cacheable: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http upstream process upstream -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 pipe read upstream: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 pipe preread: 110 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 readv: eof:1, avail:0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 readv: 1, last:3768 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 pipe recv chain: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 110 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 pipe length: -1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 input buf #0 000062E0E316321A -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 06 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record length: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi closed stdout -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 03 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 08 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi record length: 8 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http fastcgi sent end request -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 input buf 000062E0E316321A 82 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 pipe write downstream: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 pipe write downstream flush in -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http output filter "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http copy filter: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http postpone filter "/report?" 000062E0E31726E0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http chunk: 82 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 write new buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http write filter: l:0 f:0 s:348 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http copy filter: 0 "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 pipe write downstream done -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 event timer: 10, old: 585849475, new: 585849480 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http upstream exit: 0000000000000000 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 finalize http upstream request: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 finalize http fastcgi request -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 free rr peer 1 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 close http upstream connection: 10 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 event timer del: 10: 585849475 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 reusable connection: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http upstream temp fd: -1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http output filter "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http copy filter: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http chunk: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 write old buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http write filter: l:1 f:0 s:353 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http write filter limit 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 writev: 353 of 353 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http write filter 0000000000000000 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http copy filter: 0 "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 set http keepalive handler -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http close request -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http log handler -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 free: 000062E0E3163140 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 free: 000062E0E3171870, unused: 14 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 free: 000062E0E3164150, unused: 2394 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 free: 000062E0E315C0A0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 hc free: 0000000000000000 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 hc busy: 0000000000000000 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 tcp_nodelay -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 reusable connection: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 event timer add: 6: 65000:585854480 -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 4 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 http keepalive handler -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 recv: eof:1, avail:-1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 recv: fd:6 0 of 1024 -2025/09/08 07:48:09 [info] 1529234#1529234: *17 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 close http connection: 6 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 event timer del: 6: 585854480 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 reusable connection: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 free: 000062E0E315C0A0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *17 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:09 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 accept: 127.0.0.1:44834 fd:6 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 event timer add: 6: 60000:585849702 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 reusable connection: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 221 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http wait request handler -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 recv: eof:0, avail:-1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 recv: fd:6 597 of 1024 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 reusable connection: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http process request line -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http uri: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http args: "" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http exten: "" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http process request header line -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http header: "Host: localhost:9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http header: "Accept: */*" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http header: "Content-Type: application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http header: "Content-Length: 460" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http header done -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 event timer del: 6: 585849702 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 generic phase: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 rewrite phase: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 test location: "/health" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 test location: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 using configuration "=/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http cl:460 max:104857600 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 rewrite phase: 3 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "PUT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script regex: "^(PUT)$" -2025/09/08 07:48:09 [notice] 1529234#1529234: *19 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script if -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script if: false -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 post rewrite phase: 4 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 generic phase: 5 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 generic phase: 6 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 generic phase: 7 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 access phase: 8 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 access phase: 9 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 access phase: 10 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 post access phase: 11 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 generic phase: 12 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 generic phase: 13 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http client request body preread 460 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http request body content length filter -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http body new buf t:1 f:0 000062E0E315C129, pos 000062E0E315C129, size: 460 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http init upstream, client timer: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "QUERY_STRING" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "PUT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "460" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "CONTENT_LENGTH: 460" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "REQUEST_URI" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "./blobs" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "HTTP/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "http" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "CGI/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "nginx/" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "1.18.0" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "127.0.0.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "REMOTE_PORT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "44834" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "REMOTE_PORT: 44834" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "SERVER_ADDR" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "127.0.0.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "SERVER_PORT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "SERVER_NAME" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "localhost" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "200" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script var: "./blobs" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 fastcgi param: "HTTP_CONTENT_LENGTH: 460" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http cleanup add: 000062E0E31726A0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 get rr peer, try: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 stream socket 10 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #20 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 connected -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http upstream connect: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http upstream send request -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http upstream send request body -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 chain writer buf fl:0 s:592 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 chain writer buf fl:0 s:460 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 chain writer buf fl:0 s:12 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 chain writer in: 000062E0E3172710 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 writev: 1064 of 1064 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 chain writer out: 0000000000000000 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 event timer add: 10: 60000:585849702 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http request count:2 blk:0 -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http run request: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http upstream check client, write event:1, "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C9 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http upstream request: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http upstream dummy handler -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 59999 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C9 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http upstream request: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http upstream process header -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 recv: eof:1, avail:-1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 recv: fd:10 328 of 4096 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 07 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 90 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record length: 144 -2025/09/08 07:48:09 [error] 1529234#1529234: *19 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:09] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:09] PUT /report - Auth: authenticated - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 07 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record length: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 06 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 83 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 05 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record length: 131 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi parser: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi header: "Status: 200 OK" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi parser: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi parser: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi header done -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:09 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http write filter: l:0 f:0 s:260 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http cacheable: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http upstream process upstream -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 pipe read upstream: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 pipe preread: 110 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 readv: eof:1, avail:0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 readv: 1, last:3768 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 pipe recv chain: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 110 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 pipe length: -1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 input buf #0 000062E0E316321A -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 06 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record length: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi closed stdout -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 03 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 08 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi record length: 8 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http fastcgi sent end request -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 input buf 000062E0E316321A 81 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 pipe write downstream: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 pipe write downstream flush in -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http output filter "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http copy filter: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http postpone filter "/report?" 000062E0E31726E0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http chunk: 81 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 write new buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 81 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http write filter: l:0 f:0 s:347 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http copy filter: 0 "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 pipe write downstream done -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 event timer: 10, old: 585849702, new: 585849710 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http upstream exit: 0000000000000000 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 finalize http upstream request: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 finalize http fastcgi request -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 free rr peer 1 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 close http upstream connection: 10 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 event timer del: 10: 585849702 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 reusable connection: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http upstream temp fd: -1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http output filter "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http copy filter: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http chunk: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 write old buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 81 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http write filter: l:1 f:0 s:352 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http write filter limit 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 writev: 352 of 352 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http write filter 0000000000000000 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http copy filter: 0 "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 set http keepalive handler -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http close request -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http log handler -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 free: 000062E0E3163140 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 free: 000062E0E3171870, unused: 14 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 free: 000062E0E3164150, unused: 2394 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 free: 000062E0E315C0A0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 hc free: 0000000000000000 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 hc busy: 0000000000000000 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 tcp_nodelay -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 reusable connection: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 event timer add: 6: 65000:585854710 -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 7 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 http keepalive handler -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 recv: eof:1, avail:-1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 recv: fd:6 0 of 1024 -2025/09/08 07:48:09 [info] 1529234#1529234: *19 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 close http connection: 6 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 event timer del: 6: 585854710 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 reusable connection: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 free: 000062E0E315C0A0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *19 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:09 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 accept: 127.0.0.1:44836 fd:6 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 event timer add: 6: 60000:585849964 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 reusable connection: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 253 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http wait request handler -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 recv: eof:0, avail:-1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 recv: fd:6 783 of 1024 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 reusable connection: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http process request line -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http uri: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http args: "" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http exten: "" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http process request header line -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http header: "Host: localhost:9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http header: "Accept: */*" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http header: "Content-Type: application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http header: "Content-Length: 646" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http header done -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 event timer del: 6: 585849964 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 generic phase: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 rewrite phase: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 test location: "/health" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 test location: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 using configuration "=/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http cl:646 max:104857600 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 rewrite phase: 3 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "PUT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script regex: "^(PUT)$" -2025/09/08 07:48:09 [notice] 1529234#1529234: *21 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script if -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script if: false -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 post rewrite phase: 4 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 generic phase: 5 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 generic phase: 6 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 generic phase: 7 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 access phase: 8 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 access phase: 9 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 access phase: 10 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 post access phase: 11 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 generic phase: 12 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 generic phase: 13 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http client request body preread 646 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http request body content length filter -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http body new buf t:1 f:0 000062E0E315C129, pos 000062E0E315C129, size: 646 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http init upstream, client timer: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "QUERY_STRING" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "PUT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "646" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "CONTENT_LENGTH: 646" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "REQUEST_URI" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "./blobs" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "HTTP/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "http" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "CGI/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "nginx/" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "1.18.0" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "127.0.0.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "REMOTE_PORT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "44836" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "REMOTE_PORT: 44836" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "SERVER_ADDR" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "127.0.0.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "SERVER_PORT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "SERVER_NAME" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "localhost" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "200" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script var: "./blobs" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 fastcgi param: "HTTP_CONTENT_LENGTH: 646" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http cleanup add: 000062E0E31726A0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 get rr peer, try: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 stream socket 10 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #22 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 connected -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http upstream connect: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http upstream send request -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http upstream send request body -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 chain writer buf fl:0 s:592 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 chain writer buf fl:0 s:646 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 chain writer buf fl:0 s:10 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 chain writer in: 000062E0E3172710 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 writev: 1248 of 1248 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 chain writer out: 0000000000000000 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 event timer add: 10: 60000:585849964 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http request count:2 blk:0 -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http run request: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http upstream check client, write event:1, "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C8 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http upstream request: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http upstream dummy handler -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 59999 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C8 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http upstream request: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http upstream process header -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 recv: eof:1, avail:-1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 recv: fd:10 328 of 4096 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 07 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 90 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record length: 144 -2025/09/08 07:48:09 [error] 1529234#1529234: *21 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:09] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:09] PUT /report - Auth: authenticated - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 07 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record length: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 06 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 84 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 04 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record length: 132 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi parser: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi header: "Status: 200 OK" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi parser: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi parser: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi header done -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:09 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http write filter: l:0 f:0 s:260 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http cacheable: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http upstream process upstream -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 pipe read upstream: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 pipe preread: 110 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 readv: eof:1, avail:0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 readv: 1, last:3768 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 pipe recv chain: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 110 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 pipe length: -1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 input buf #0 000062E0E316321A -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 06 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record length: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi closed stdout -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 03 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 08 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi record length: 8 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http fastcgi sent end request -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 input buf 000062E0E316321A 82 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 pipe write downstream: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 pipe write downstream flush in -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http output filter "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http copy filter: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http postpone filter "/report?" 000062E0E31726E0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http chunk: 82 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 write new buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http write filter: l:0 f:0 s:348 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http copy filter: 0 "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 pipe write downstream done -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 event timer: 10, old: 585849964, new: 585849968 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http upstream exit: 0000000000000000 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 finalize http upstream request: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 finalize http fastcgi request -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 free rr peer 1 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 close http upstream connection: 10 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 event timer del: 10: 585849964 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 reusable connection: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http upstream temp fd: -1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http output filter "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http copy filter: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http chunk: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 write old buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http write filter: l:1 f:0 s:353 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http write filter limit 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 writev: 353 of 353 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http write filter 0000000000000000 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http copy filter: 0 "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 set http keepalive handler -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http close request -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http log handler -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 free: 000062E0E3163140 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 free: 000062E0E3171870, unused: 14 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 free: 000062E0E3164150, unused: 2394 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 free: 000062E0E315C0A0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 hc free: 0000000000000000 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 hc busy: 0000000000000000 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 tcp_nodelay -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 reusable connection: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 event timer add: 6: 65000:585854968 -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 3 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 http keepalive handler -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 recv: eof:1, avail:-1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 recv: fd:6 0 of 1024 -2025/09/08 07:48:09 [info] 1529234#1529234: *21 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 close http connection: 6 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 event timer del: 6: 585854968 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 reusable connection: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 free: 000062E0E315C0A0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *21 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:09 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 accept: 127.0.0.1:44838 fd:6 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 event timer add: 6: 60000:585850246 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 reusable connection: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 277 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http wait request handler -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 recv: eof:0, avail:-1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 recv: fd:6 518 of 1024 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 reusable connection: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http process request line -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http uri: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http args: "" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http exten: "" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http process request header line -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http header: "Host: localhost:9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http header: "Accept: */*" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http header: "Content-Type: application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http header: "Content-Length: 381" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http header done -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 event timer del: 6: 585850246 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 generic phase: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 rewrite phase: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 test location: "/health" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 test location: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 using configuration "=/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http cl:381 max:104857600 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 rewrite phase: 3 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "PUT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script regex: "^(PUT)$" -2025/09/08 07:48:09 [notice] 1529234#1529234: *23 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script if -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script if: false -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 post rewrite phase: 4 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 generic phase: 5 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 generic phase: 6 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 generic phase: 7 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 access phase: 8 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 access phase: 9 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 access phase: 10 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 post access phase: 11 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 generic phase: 12 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 generic phase: 13 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http client request body preread 381 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http request body content length filter -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http body new buf t:1 f:0 000062E0E315C129, pos 000062E0E315C129, size: 381 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http init upstream, client timer: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "QUERY_STRING" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "PUT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "381" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "CONTENT_LENGTH: 381" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "REQUEST_URI" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "./blobs" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "HTTP/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "http" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "CGI/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "nginx/" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "1.18.0" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "127.0.0.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "REMOTE_PORT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "44838" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "REMOTE_PORT: 44838" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "SERVER_ADDR" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "127.0.0.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "SERVER_PORT" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "SERVER_NAME" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "localhost" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "200" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script var: "./blobs" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 fastcgi param: "HTTP_CONTENT_LENGTH: 381" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http cleanup add: 000062E0E31726A0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 get rr peer, try: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 stream socket 10 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #24 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 connected -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http upstream connect: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http upstream send request -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http upstream send request body -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 chain writer buf fl:0 s:592 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 chain writer buf fl:0 s:381 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 chain writer buf fl:0 s:11 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 chain writer in: 000062E0E3172710 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 writev: 984 of 984 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 chain writer out: 0000000000000000 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 event timer add: 10: 60000:585850246 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http request count:2 blk:0 -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http run request: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http upstream check client, write event:1, "/report" -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C9 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http upstream request: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http upstream dummy handler -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:10 ev:0005 d:000074D8A809E2C9 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http upstream request: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http upstream process header -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 recv: eof:0, avail:-1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 recv: fd:10 400 of 4096 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 07 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 87 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record length: 135 -2025/09/08 07:48:09 [error] 1529234#1529234: *23 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:09] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:09] PUT /report - Auth: none - Status: 400" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 07 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record length: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 06 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: D2 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 06 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record length: 210 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi parser: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi header: "Status: 400 Bad Request" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi parser: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi parser: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi header done -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 HTTP/1.1 400 Bad Request -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:09 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 180 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http write filter: l:0 f:0 s:180 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http cacheable: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http upstream process upstream -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe read upstream: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe preread: 181 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321B, size: 181 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe length: -1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe write downstream: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe write busy: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe write: out:0000000000000000, f:0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe read upstream: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321B, size: 181 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe length: -1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 event timer: 10, old: 585850246, new: 585850246 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http upstream request: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http upstream dummy handler -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C9 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http upstream request: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http upstream process upstream -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe read upstream: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 readv: eof:1, avail:-1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 readv: 1, last:3696 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe recv chain: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321B, size: 181 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe length: -1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 input buf #0 000062E0E316321B -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 06 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record length: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi closed stdout -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 03 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 01 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 08 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record byte: 00 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi record length: 8 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http fastcgi sent end request -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 input buf 000062E0E316321B 151 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe write downstream: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe write downstream flush in -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http output filter "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http copy filter: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http postpone filter "/report?" 000062E0E31726E0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http chunk: 151 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 180 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 write new buf t:1 f:0 000062E0E3172858, pos 000062E0E3172858, size: 4 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316321B, size: 151 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http write filter: l:0 f:0 s:337 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http copy filter: 0 "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 pipe write downstream done -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 event timer: 10, old: 585850246, new: 585850246 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http upstream exit: 0000000000000000 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 finalize http upstream request: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 finalize http fastcgi request -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 free rr peer 1 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 close http upstream connection: 10 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 event timer del: 10: 585850246 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 reusable connection: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http upstream temp fd: -1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http output filter "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http copy filter: "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http chunk: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 180 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 write old buf t:1 f:0 000062E0E3172858, pos 000062E0E3172858, size: 4 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316321B, size: 151 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http write filter: l:1 f:0 s:342 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http write filter limit 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 writev: 342 of 342 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http write filter 0000000000000000 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http copy filter: 0 "/report?" -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 set http keepalive handler -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http close request -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http log handler -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 free: 000062E0E3163140 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 free: 000062E0E3171870, unused: 6 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 free: 000062E0E3164150, unused: 2474 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 free: 000062E0E315C0A0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 hc free: 0000000000000000 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 hc busy: 0000000000000000 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 tcp_nodelay -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 reusable connection: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 event timer add: 6: 65000:585855246 -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 http keepalive handler -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 recv: eof:1, avail:-1 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 recv: fd:6 0 of 1024 -2025/09/08 07:48:09 [info] 1529234#1529234: *23 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 close http connection: 6 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 event timer del: 6: 585855246 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 reusable connection: 0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 free: 000062E0E315C0A0 -2025/09/08 07:48:09 [debug] 1529234#1529234: *23 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:09 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:09 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:09 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:10 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 accept: 127.0.0.1:44852 fd:6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 event timer add: 6: 60000:585850472 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 reusable connection: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 225 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http wait request handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 recv: eof:0, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 recv: fd:6 542 of 1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http process request line -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http uri: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http args: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http exten: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http process request header line -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http header: "Host: localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http header: "Accept: */*" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http header: "Content-Type: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http header: "Content-Length: 405" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http header done -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 event timer del: 6: 585850472 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 generic phase: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 rewrite phase: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 test location: "/health" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 test location: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 using configuration "=/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http cl:405 max:104857600 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 rewrite phase: 3 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "PUT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script regex: "^(PUT)$" -2025/09/08 07:48:10 [notice] 1529234#1529234: *25 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script if -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script if: false -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 post rewrite phase: 4 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 generic phase: 5 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 generic phase: 6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 generic phase: 7 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 access phase: 8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 access phase: 9 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 access phase: 10 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 post access phase: 11 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 generic phase: 12 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 generic phase: 13 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http client request body preread 405 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http request body content length filter -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http body new buf t:1 f:0 000062E0E315C129, pos 000062E0E315C129, size: 405 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http init upstream, client timer: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "QUERY_STRING" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "PUT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "405" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "CONTENT_LENGTH: 405" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "REQUEST_URI" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "./blobs" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "http" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "CGI/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "nginx/" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "1.18.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "REMOTE_PORT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "44852" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "REMOTE_PORT: 44852" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "SERVER_ADDR" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "SERVER_PORT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "SERVER_NAME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "localhost" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "200" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script var: "./blobs" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 fastcgi param: "HTTP_CONTENT_LENGTH: 405" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http cleanup add: 000062E0E31726A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 get rr peer, try: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 stream socket 10 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #26 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 connected -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http upstream connect: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http upstream send request -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http upstream send request body -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 chain writer buf fl:0 s:592 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 chain writer buf fl:0 s:405 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 chain writer buf fl:0 s:11 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 chain writer in: 000062E0E3172710 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 writev: 1008 of 1008 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 chain writer out: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 event timer add: 10: 60000:585850472 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http request count:2 blk:0 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http run request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http upstream check client, write event:1, "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http upstream request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http upstream dummy handler -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:10 ev:0005 d:000074D8A809E2C8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http upstream request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http upstream process header -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 recv: eof:0, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 recv: fd:10 408 of 4096 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 07 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 8C -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 04 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record length: 140 -2025/09/08 07:48:10 [error] 1529234#1529234: *25 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:10] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:10] PUT /report - Auth: no_hashes - Status: 400" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 07 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record length: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 06 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: D4 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 04 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record length: 212 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi parser: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi header: "Status: 400 Bad Request" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi parser: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi parser: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi header done -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 HTTP/1.1 400 Bad Request -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:10 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 180 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http write filter: l:0 f:0 s:180 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http cacheable: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http upstream process upstream -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe read upstream: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe preread: 181 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E3163223, size: 181 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe length: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe write downstream: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe write busy: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe write: out:0000000000000000, f:0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe read upstream: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E3163223, size: 181 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe length: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 event timer: 10, old: 585850472, new: 585850472 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http upstream request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http upstream dummy handler -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http upstream request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http upstream process upstream -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe read upstream: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 readv: eof:1, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 readv: 1, last:3688 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe recv chain: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E3163223, size: 181 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe length: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 input buf #0 000062E0E3163223 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 06 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record length: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi closed stdout -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 03 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 08 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi record length: 8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http fastcgi sent end request -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 input buf 000062E0E3163223 153 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe write downstream: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe write downstream flush in -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http output filter "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http copy filter: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http postpone filter "/report?" 000062E0E31726E0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http chunk: 153 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 180 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 write new buf t:1 f:0 000062E0E3172858, pos 000062E0E3172858, size: 4 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E3163223, size: 153 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http write filter: l:0 f:0 s:339 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http copy filter: 0 "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 pipe write downstream done -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 event timer: 10, old: 585850472, new: 585850473 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http upstream exit: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 finalize http upstream request: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 finalize http fastcgi request -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 free rr peer 1 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 close http upstream connection: 10 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 event timer del: 10: 585850472 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http upstream temp fd: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http output filter "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http copy filter: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http chunk: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 180 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 write old buf t:1 f:0 000062E0E3172858, pos 000062E0E3172858, size: 4 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E3163223, size: 153 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http write filter: l:1 f:0 s:344 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http write filter limit 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 writev: 344 of 344 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http write filter 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http copy filter: 0 "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 set http keepalive handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http close request -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http log handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 free: 000062E0E3163140 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 free: 000062E0E3171870, unused: 6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 free: 000062E0E3164150, unused: 2474 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 free: 000062E0E315C0A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 hc free: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 hc busy: 0000000000000000 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 tcp_nodelay -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 reusable connection: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 event timer add: 6: 65000:585855473 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 http keepalive handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 recv: eof:1, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 recv: fd:6 0 of 1024 -2025/09/08 07:48:10 [info] 1529234#1529234: *25 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 close http connection: 6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 event timer del: 6: 585855473 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 free: 000062E0E315C0A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *25 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:10 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 accept: 127.0.0.1:44860 fd:6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 event timer add: 6: 60000:585850784 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 reusable connection: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 311 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http wait request handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 recv: eof:0, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 recv: fd:6 575 of 1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http process request line -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http uri: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http args: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http exten: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http process request header line -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http header: "Host: localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http header: "Accept: */*" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http header: "Content-Type: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http header: "Content-Length: 438" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http header done -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 event timer del: 6: 585850784 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 generic phase: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 rewrite phase: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 test location: "/health" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 test location: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 using configuration "=/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http cl:438 max:104857600 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 rewrite phase: 3 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "PUT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script regex: "^(PUT)$" -2025/09/08 07:48:10 [notice] 1529234#1529234: *27 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script if -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script if: false -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 post rewrite phase: 4 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 generic phase: 5 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 generic phase: 6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 generic phase: 7 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 access phase: 8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 access phase: 9 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 access phase: 10 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 post access phase: 11 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 generic phase: 12 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 generic phase: 13 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http client request body preread 438 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http request body content length filter -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http body new buf t:1 f:0 000062E0E315C129, pos 000062E0E315C129, size: 438 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http init upstream, client timer: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "QUERY_STRING" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "PUT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "438" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "CONTENT_LENGTH: 438" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "REQUEST_URI" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "./blobs" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "http" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "CGI/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "nginx/" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "1.18.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "REMOTE_PORT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "44860" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "REMOTE_PORT: 44860" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "SERVER_ADDR" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "SERVER_PORT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "SERVER_NAME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "localhost" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "200" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script var: "./blobs" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 fastcgi param: "HTTP_CONTENT_LENGTH: 438" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http cleanup add: 000062E0E31726A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 get rr peer, try: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 stream socket 10 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #28 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 connected -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http upstream connect: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http upstream send request -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http upstream send request body -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 chain writer buf fl:0 s:592 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 chain writer buf fl:0 s:438 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 chain writer buf fl:0 s:10 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 chain writer in: 000062E0E3172710 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 writev: 1040 of 1040 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 chain writer out: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 event timer add: 10: 60000:585850784 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http request count:2 blk:0 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http run request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http upstream check client, write event:1, "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C9 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http upstream request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http upstream dummy handler -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 59999 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C9 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http upstream request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http upstream process header -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 recv: eof:1, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 recv: fd:10 400 of 4096 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 07 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 87 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record length: 135 -2025/09/08 07:48:10 [error] 1529234#1529234: *27 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:10] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:10] PUT /report - Auth: none - Status: 400" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 07 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record length: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 06 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: D2 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 06 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record length: 210 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi parser: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi header: "Status: 400 Bad Request" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi parser: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi parser: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi header done -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 HTTP/1.1 400 Bad Request -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:10 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 180 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http write filter: l:0 f:0 s:180 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http cacheable: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http upstream process upstream -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 pipe read upstream: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 pipe preread: 181 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 readv: eof:1, avail:0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 readv: 1, last:3696 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 pipe recv chain: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321B, size: 181 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 pipe length: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 input buf #0 000062E0E316321B -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 06 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record length: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi closed stdout -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 03 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 08 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi record length: 8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http fastcgi sent end request -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 input buf 000062E0E316321B 151 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 pipe write downstream: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 pipe write downstream flush in -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http output filter "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http copy filter: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http postpone filter "/report?" 000062E0E31726E0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http chunk: 151 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 180 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 write new buf t:1 f:0 000062E0E3172858, pos 000062E0E3172858, size: 4 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316321B, size: 151 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http write filter: l:0 f:0 s:337 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http copy filter: 0 "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 pipe write downstream done -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 event timer: 10, old: 585850784, new: 585850785 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http upstream exit: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 finalize http upstream request: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 finalize http fastcgi request -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 free rr peer 1 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 close http upstream connection: 10 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 event timer del: 10: 585850784 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http upstream temp fd: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http output filter "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http copy filter: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http chunk: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 180 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 write old buf t:1 f:0 000062E0E3172858, pos 000062E0E3172858, size: 4 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316321B, size: 151 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http write filter: l:1 f:0 s:342 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http write filter limit 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 writev: 342 of 342 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http write filter 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http copy filter: 0 "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 set http keepalive handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http close request -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http log handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 free: 000062E0E3163140 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 free: 000062E0E3171870, unused: 6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 free: 000062E0E3164150, unused: 2474 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 free: 000062E0E315C0A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 hc free: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 hc busy: 0000000000000000 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 tcp_nodelay -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 reusable connection: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 event timer add: 6: 65000:585855785 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 http keepalive handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 recv: eof:1, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 recv: fd:6 0 of 1024 -2025/09/08 07:48:10 [info] 1529234#1529234: *27 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 close http connection: 6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 event timer del: 6: 585855785 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 free: 000062E0E315C0A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *27 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:10 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 accept: 127.0.0.1:44866 fd:6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 event timer add: 6: 60000:585850807 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 reusable connection: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 21 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http wait request handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 recv: eof:0, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 recv: fd:6 165 of 1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http process request line -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http uri: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http args: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http exten: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http process request header line -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http header: "Host: localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http header: "Accept: */*" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http header: "Content-Type: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http header: "Content-Length: 29" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http header done -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 event timer del: 6: 585850807 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 generic phase: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 rewrite phase: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 test location: "/health" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 test location: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 using configuration "=/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http cl:29 max:104857600 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 rewrite phase: 3 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "PUT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script regex: "^(PUT)$" -2025/09/08 07:48:10 [notice] 1529234#1529234: *29 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script if -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script if: false -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 post rewrite phase: 4 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 generic phase: 5 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 generic phase: 6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 generic phase: 7 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 access phase: 8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 access phase: 9 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 access phase: 10 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 post access phase: 11 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 generic phase: 12 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 generic phase: 13 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http client request body preread 29 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http request body content length filter -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http body new buf t:1 f:0 000062E0E315C128, pos 000062E0E315C128, size: 29 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http init upstream, client timer: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "QUERY_STRING" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "PUT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "29" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "CONTENT_LENGTH: 29" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "REQUEST_URI" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "./blobs" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "http" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "CGI/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "nginx/" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "1.18.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "REMOTE_PORT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "44866" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "REMOTE_PORT: 44866" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "SERVER_ADDR" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "SERVER_PORT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "SERVER_NAME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "localhost" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "200" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script var: "./blobs" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 fastcgi param: "HTTP_CONTENT_LENGTH: 29" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http cleanup add: 000062E0E31726A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 get rr peer, try: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 stream socket 10 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #30 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 connected -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http upstream connect: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http upstream send request -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http upstream send request body -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 chain writer buf fl:0 s:592 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 chain writer buf fl:0 s:29 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 chain writer buf fl:0 s:11 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 chain writer in: 000062E0E3172710 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 writev: 632 of 632 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 chain writer out: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 event timer add: 10: 60000:585850807 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http request count:2 blk:0 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http run request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http upstream check client, write event:1, "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http upstream request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http upstream dummy handler -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 59999 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http upstream request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http upstream process header -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 recv: eof:1, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 recv: fd:10 360 of 4096 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 07 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 87 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record length: 135 -2025/09/08 07:48:10 [error] 1529234#1529234: *29 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:10] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:10] PUT /report - Auth: none - Status: 400" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 07 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record length: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 06 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: AD -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 03 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record length: 173 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi parser: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi header: "Status: 400 Bad Request" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi parser: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi parser: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi header done -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 HTTP/1.1 400 Bad Request -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:10 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 180 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http write filter: l:0 f:0 s:180 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http cacheable: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http upstream process upstream -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 pipe read upstream: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 pipe preread: 141 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 readv: eof:1, avail:0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 readv: 1, last:3736 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 pipe recv chain: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321B, size: 141 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 pipe length: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 input buf #0 000062E0E316321B -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 06 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record length: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi closed stdout -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 03 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 08 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi record length: 8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http fastcgi sent end request -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 input buf 000062E0E316321B 114 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 pipe write downstream: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 pipe write downstream flush in -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http output filter "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http copy filter: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http postpone filter "/report?" 000062E0E31726E0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http chunk: 114 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 180 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 write new buf t:1 f:0 000062E0E3172858, pos 000062E0E3172858, size: 4 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316321B, size: 114 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http write filter: l:0 f:0 s:300 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http copy filter: 0 "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 pipe write downstream done -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 event timer: 10, old: 585850807, new: 585850809 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http upstream exit: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 finalize http upstream request: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 finalize http fastcgi request -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 free rr peer 1 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 close http upstream connection: 10 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 event timer del: 10: 585850807 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http upstream temp fd: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http output filter "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http copy filter: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http chunk: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 180 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 write old buf t:1 f:0 000062E0E3172858, pos 000062E0E3172858, size: 4 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316321B, size: 114 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http write filter: l:1 f:0 s:305 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http write filter limit 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 writev: 305 of 305 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http write filter 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http copy filter: 0 "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 set http keepalive handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http close request -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http log handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 free: 000062E0E3163140 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 free: 000062E0E3171870, unused: 6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 free: 000062E0E3164150, unused: 2474 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 free: 000062E0E315C0A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 hc free: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 hc busy: 0000000000000000 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 tcp_nodelay -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 reusable connection: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 event timer add: 6: 65000:585855809 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 http keepalive handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 recv: eof:1, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 recv: fd:6 0 of 1024 -2025/09/08 07:48:10 [info] 1529234#1529234: *29 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 close http connection: 6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 event timer del: 6: 585855809 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 free: 000062E0E315C0A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *29 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:10 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 accept: 127.0.0.1:44876 fd:6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 event timer add: 6: 60000:585850830 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 reusable connection: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 20 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http wait request handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 recv: eof:0, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 recv: fd:6 84 of 1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http process request line -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http request line: "GET /report HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http uri: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http args: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http exten: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http process request header line -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http header: "Host: localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http header: "Accept: */*" -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http header done -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 event timer del: 6: 585850830 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 generic phase: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 rewrite phase: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 test location: "/health" -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 test location: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 using configuration "=/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http cl:-1 max:104857600 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 rewrite phase: 3 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http script var -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http script var: "GET" -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http script regex: "^(PUT)$" -2025/09/08 07:48:10 [notice] 1529234#1529234: *31 "^(PUT)$" does not match "GET", client: 127.0.0.1, server: localhost, request: "GET /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http script if -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http finalize request: 405, "/report?" a:1, c:1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http special response: 405, "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http set discard body -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 HTTP/1.1 405 Not Allowed -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:10 GMT -Content-Type: text/html -Content-Length: 166 -Connection: keep-alive - -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 write new buf t:1 f:0 000062E0E3171C50, pos 000062E0E3171C50, size: 166 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http write filter: l:0 f:0 s:166 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http output filter "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http copy filter: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http postpone filter "/report?" 000062E0E317C4C0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 write old buf t:1 f:0 000062E0E3171C50, pos 000062E0E3171C50, size: 166 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AEB500, size: 104 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AEBC80, size: 62 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http write filter: l:1 f:0 s:332 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http write filter limit 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 writev: 332 of 332 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http write filter 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http copy filter: 0 "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 set http keepalive handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http close request -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http log handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 free: 000062E0E317B500, unused: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 free: 000062E0E3171870, unused: 2498 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 free: 000062E0E315C0A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 hc free: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 hc busy: 0000000000000000 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 tcp_nodelay -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 reusable connection: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 event timer add: 6: 65000:585855830 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:2001 d:000074D8A809E1E1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 http keepalive handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 recv: eof:1, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 recv: fd:6 0 of 1024 -2025/09/08 07:48:10 [info] 1529234#1529234: *31 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 close http connection: 6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 event timer del: 6: 585855830 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 free: 000062E0E315C0A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *31 free: 000062E0E3159840, unused: 136 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:10 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 accept: 127.0.0.1:44884 fd:6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 event timer add: 6: 60000:585850852 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 reusable connection: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 21 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http wait request handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 recv: eof:0, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 recv: fd:6 152 of 1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http process request line -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http request line: "POST /report HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http uri: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http args: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http exten: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http process request header line -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http header: "Host: localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http header: "Accept: */*" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http header: "Content-Type: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http header: "Content-Length: 15" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http header done -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 event timer del: 6: 585850852 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 generic phase: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 rewrite phase: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 test location: "/health" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 test location: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 using configuration "=/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http cl:15 max:104857600 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 rewrite phase: 3 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http script var -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http script var: "POST" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http script regex: "^(PUT)$" -2025/09/08 07:48:10 [notice] 1529234#1529234: *32 "^(PUT)$" does not match "POST", client: 127.0.0.1, server: localhost, request: "POST /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http script if -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http finalize request: 405, "/report?" a:1, c:1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http special response: 405, "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http set discard body -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 HTTP/1.1 405 Not Allowed -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:10 GMT -Content-Type: text/html -Content-Length: 166 -Connection: keep-alive - -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 write new buf t:1 f:0 000062E0E3171C50, pos 000062E0E3171C50, size: 166 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http write filter: l:0 f:0 s:166 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http output filter "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http copy filter: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http postpone filter "/report?" 000062E0E317C4D8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 write old buf t:1 f:0 000062E0E3171C50, pos 000062E0E3171C50, size: 166 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AEB500, size: 104 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AEBC80, size: 62 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http write filter: l:1 f:0 s:332 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http write filter limit 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 writev: 332 of 332 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http write filter 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http copy filter: 0 "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 set http keepalive handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http close request -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http log handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 free: 000062E0E317B500, unused: 8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 free: 000062E0E3171870, unused: 2465 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 free: 000062E0E315C0A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 hc free: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 hc busy: 0000000000000000 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 tcp_nodelay -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 reusable connection: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 event timer add: 6: 65000:585855852 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:2001 d:000074D8A809E1E0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 http keepalive handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 recv: eof:1, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 recv: fd:6 0 of 1024 -2025/09/08 07:48:10 [info] 1529234#1529234: *32 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 close http connection: 6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 event timer del: 6: 585855852 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 free: 000062E0E315C0A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *32 free: 000062E0E3159840, unused: 136 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:10 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 accept: 127.0.0.1:44896 fd:6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 event timer add: 6: 60000:585850873 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 reusable connection: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 20 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http wait request handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 recv: eof:0, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 recv: fd:6 87 of 1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http process request line -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http request line: "DELETE /report HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http uri: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http args: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http exten: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http process request header line -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http header: "Host: localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http header: "Accept: */*" -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http header done -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 event timer del: 6: 585850873 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 generic phase: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 rewrite phase: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 test location: "/health" -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 test location: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 using configuration "=/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http cl:-1 max:104857600 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 rewrite phase: 3 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http script var -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http script var: "DELETE" -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http script regex: "^(PUT)$" -2025/09/08 07:48:10 [notice] 1529234#1529234: *33 "^(PUT)$" does not match "DELETE", client: 127.0.0.1, server: localhost, request: "DELETE /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http script if -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http finalize request: 405, "/report?" a:1, c:1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http special response: 405, "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http set discard body -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 HTTP/1.1 405 Not Allowed -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:10 GMT -Content-Type: text/html -Content-Length: 166 -Connection: keep-alive - -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 write new buf t:1 f:0 000062E0E3171C50, pos 000062E0E3171C50, size: 166 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http write filter: l:0 f:0 s:166 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http output filter "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http copy filter: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http postpone filter "/report?" 000062E0E317C4C0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 write old buf t:1 f:0 000062E0E3171C50, pos 000062E0E3171C50, size: 166 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AEB500, size: 104 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AEBC80, size: 62 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http write filter: l:1 f:0 s:332 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http write filter limit 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 writev: 332 of 332 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http write filter 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http copy filter: 0 "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 set http keepalive handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http close request -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http log handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 free: 000062E0E317B500, unused: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 free: 000062E0E3171870, unused: 2495 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 free: 000062E0E315C0A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 hc free: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 hc busy: 0000000000000000 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 tcp_nodelay -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 reusable connection: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 event timer add: 6: 65000:585855874 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:2001 d:000074D8A809E1E1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 http keepalive handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 recv: eof:1, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 recv: fd:6 0 of 1024 -2025/09/08 07:48:10 [info] 1529234#1529234: *33 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 close http connection: 6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 event timer del: 6: 585855874 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 free: 000062E0E315C0A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *33 free: 000062E0E3159840, unused: 136 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:10 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 accept: 127.0.0.1:44906 fd:6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 event timer add: 6: 60000:585850895 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 reusable connection: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 21 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http wait request handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 recv: eof:0, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 recv: fd:6 116 of 1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http process request line -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http uri: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http args: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http exten: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http process request header line -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http header: "Host: localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http header: "Accept: */*" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http header: "Content-Type: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http header done -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 event timer del: 6: 585850895 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 generic phase: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 rewrite phase: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 test location: "/health" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 test location: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 using configuration "=/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http cl:-1 max:104857600 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 rewrite phase: 3 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var: "PUT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script regex: "^(PUT)$" -2025/09/08 07:48:10 [notice] 1529234#1529234: *34 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script if -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script if: false -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 post rewrite phase: 4 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 generic phase: 5 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 generic phase: 6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 generic phase: 7 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 access phase: 8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 access phase: 9 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 access phase: 10 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 post access phase: 11 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 generic phase: 12 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 generic phase: 13 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http init upstream, client timer: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "QUERY_STRING" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var: "PUT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var: "application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "CONTENT_LENGTH: " -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "REQUEST_URI" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var: "./blobs" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var: "HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var: "http" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "CGI/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "nginx/" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var: "1.18.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var: "127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "REMOTE_PORT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var: "44906" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "REMOTE_PORT: 44906" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "SERVER_ADDR" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var: "127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "SERVER_PORT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var: "9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "SERVER_NAME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var: "localhost" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "200" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script var: "./blobs" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http cleanup add: 000062E0E3172538 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 get rr peer, try: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 stream socket 10 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #35 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 connected -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http upstream connect: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http upstream send request -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http upstream send request body -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 chain writer buf fl:0 s:568 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 chain writer in: 000062E0E3172578 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 writev: 568 of 568 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 chain writer out: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 event timer add: 10: 60000:585850895 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http request count:2 blk:0 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http run request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http upstream check client, write event:1, "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C9 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http upstream request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http upstream dummy handler -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 59999 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C9 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http upstream request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http upstream process header -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 recv: eof:1, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 recv: fd:10 384 of 4096 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 07 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 87 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record length: 135 -2025/09/08 07:48:10 [error] 1529234#1529234: *34 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:10] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:10] PUT /report - Auth: none - Status: 400" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 07 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record length: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 06 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: C8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record length: 200 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi parser: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi header: "Status: 400 Bad Request" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi parser: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi parser: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi header done -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 HTTP/1.1 400 Bad Request -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:10 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 write new buf t:1 f:0 000062E0E3164170, pos 000062E0E3164170, size: 180 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http write filter: l:0 f:0 s:180 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http cacheable: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http upstream process upstream -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 pipe read upstream: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 pipe preread: 165 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 readv: eof:1, avail:0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 readv: 1, last:3712 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 pipe recv chain: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321B, size: 165 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 pipe length: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 input buf #0 000062E0E316321B -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 06 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record length: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi closed stdout -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 03 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 08 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi record length: 8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http fastcgi sent end request -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 input buf 000062E0E316321B 141 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 pipe write downstream: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 pipe write downstream flush in -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http output filter "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http copy filter: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http postpone filter "/report?" 000062E0E3172830 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http chunk: 141 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 write old buf t:1 f:0 000062E0E3164170, pos 000062E0E3164170, size: 180 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 write new buf t:1 f:0 000062E0E3164468, pos 000062E0E3164468, size: 4 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316321B, size: 141 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http write filter: l:0 f:0 s:327 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http copy filter: 0 "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 pipe write downstream done -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 event timer: 10, old: 585850895, new: 585850896 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http upstream exit: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 finalize http upstream request: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 finalize http fastcgi request -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 free rr peer 1 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 close http upstream connection: 10 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 event timer del: 10: 585850895 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http upstream temp fd: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http output filter "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http copy filter: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http chunk: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 write old buf t:1 f:0 000062E0E3164170, pos 000062E0E3164170, size: 180 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 write old buf t:1 f:0 000062E0E3164468, pos 000062E0E3164468, size: 4 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316321B, size: 141 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http write filter: l:1 f:0 s:332 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http write filter limit 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 writev: 332 of 332 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http write filter 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http copy filter: 0 "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 set http keepalive handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http close request -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http log handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 free: 000062E0E3163140 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 free: 000062E0E317B500, unused: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 free: 000062E0E3171870, unused: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 free: 000062E0E3164150, unused: 2834 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 free: 000062E0E315C0A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 hc free: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 hc busy: 0000000000000000 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 tcp_nodelay -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 reusable connection: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 event timer add: 6: 65000:585855896 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 http keepalive handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 recv: eof:1, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 recv: fd:6 0 of 1024 -2025/09/08 07:48:10 [info] 1529234#1529234: *34 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 close http connection: 6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 event timer del: 6: 585855896 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 free: 000062E0E315C0A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *34 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 2 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:10 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 accept: 127.0.0.1:44916 fd:6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 event timer add: 6: 60000:585851221 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 reusable connection: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 323 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http wait request handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 recv: eof:0, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 recv: fd:6 593 of 1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http process request line -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http uri: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http args: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http exten: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http process request header line -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http header: "Host: localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http header: "Accept: */*" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http header: "Content-Type: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http header: "Content-Length: 456" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http header done -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 event timer del: 6: 585851221 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 generic phase: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 rewrite phase: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 test location: "/health" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 test location: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 using configuration "=/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http cl:456 max:104857600 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 rewrite phase: 3 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "PUT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script regex: "^(PUT)$" -2025/09/08 07:48:10 [notice] 1529234#1529234: *36 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script if -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script if: false -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 post rewrite phase: 4 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 generic phase: 5 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 generic phase: 6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 generic phase: 7 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 access phase: 8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 access phase: 9 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 access phase: 10 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 post access phase: 11 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 generic phase: 12 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 generic phase: 13 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http client request body preread 456 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http request body content length filter -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http body new buf t:1 f:0 000062E0E315C129, pos 000062E0E315C129, size: 456 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http init upstream, client timer: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "QUERY_STRING" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "PUT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "456" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "CONTENT_LENGTH: 456" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "REQUEST_URI" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "./blobs" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "http" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "CGI/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "nginx/" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "1.18.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "REMOTE_PORT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "44916" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "REMOTE_PORT: 44916" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "SERVER_ADDR" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "SERVER_PORT" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "SERVER_NAME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "localhost" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "200" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script var: "./blobs" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 fastcgi param: "HTTP_CONTENT_LENGTH: 456" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http cleanup add: 000062E0E3172698 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 get rr peer, try: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 stream socket 10 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #37 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 connected -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http upstream connect: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http upstream send request -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http upstream send request body -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 chain writer buf fl:0 s:592 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 chain writer buf fl:0 s:456 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 chain writer buf fl:0 s:8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 chain writer in: 000062E0E3172708 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 writev: 1056 of 1056 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 chain writer out: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 event timer add: 10: 60000:585851221 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http request count:2 blk:0 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http run request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http upstream check client, write event:1, "/report" -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http upstream request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http upstream dummy handler -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 59999 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http upstream request: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http upstream process header -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 recv: eof:1, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 recv: fd:10 328 of 4096 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 07 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 90 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record length: 144 -2025/09/08 07:48:10 [error] 1529234#1529234: *36 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:10] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:10] PUT /report - Auth: authenticated - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 07 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record length: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 06 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 84 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 04 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record length: 132 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi parser: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi header: "Status: 200 OK" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi parser: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi parser: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi header done -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:10 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http write filter: l:0 f:0 s:260 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http cacheable: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http upstream process upstream -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 pipe read upstream: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 pipe preread: 110 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 readv: eof:1, avail:0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 readv: 1, last:3768 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 pipe recv chain: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 110 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 pipe length: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 input buf #0 000062E0E316321A -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 06 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record length: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi closed stdout -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 03 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 01 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 08 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record byte: 00 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi record length: 8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http fastcgi sent end request -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 input buf 000062E0E316321A 82 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 pipe write downstream: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 pipe write downstream flush in -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http output filter "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http copy filter: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http postpone filter "/report?" 000062E0E31726D8 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http chunk: 82 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 write new buf t:1 f:0 000062E0E3172848, pos 000062E0E3172848, size: 4 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http write filter: l:0 f:0 s:348 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http copy filter: 0 "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 pipe write downstream done -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 event timer: 10, old: 585851221, new: 585851225 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http upstream exit: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 finalize http upstream request: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 finalize http fastcgi request -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 free rr peer 1 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 close http upstream connection: 10 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 event timer del: 10: 585851221 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http upstream temp fd: -1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http output filter "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http copy filter: "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http chunk: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 write old buf t:1 f:0 000062E0E3172848, pos 000062E0E3172848, size: 4 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http write filter: l:1 f:0 s:353 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http write filter limit 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 writev: 353 of 353 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http write filter 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http copy filter: 0 "/report?" -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 set http keepalive handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http close request -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http log handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 free: 000062E0E3163140 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 free: 000062E0E3171870, unused: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 free: 000062E0E3164150, unused: 2410 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 free: 000062E0E315C0A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 hc free: 0000000000000000 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 hc busy: 0000000000000000 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 tcp_nodelay -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 reusable connection: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 event timer add: 6: 65000:585856225 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 3 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 http keepalive handler -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 recv: eof:1, avail:-1 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 recv: fd:6 0 of 1024 -2025/09/08 07:48:10 [info] 1529234#1529234: *36 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 close http connection: 6 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 event timer del: 6: 585856225 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 reusable connection: 0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 free: 000062E0E315C0A0 -2025/09/08 07:48:10 [debug] 1529234#1529234: *36 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:10 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:10 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:10 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:11 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 accept: 127.0.0.1:44920 fd:6 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 event timer add: 6: 60000:585851523 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 reusable connection: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:11 [debug] 1529234#1529234: timer delta: 297 -2025/09/08 07:48:11 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http wait request handler -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 recv: eof:0, avail:-1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 recv: fd:6 574 of 1024 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 reusable connection: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http process request line -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http uri: "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http args: "" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http exten: "" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http process request header line -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http header: "Host: localhost:9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http header: "Accept: */*" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http header: "Content-Type: text/plain" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http header: "Content-Length: 443" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http header done -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 event timer del: 6: 585851523 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 generic phase: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 rewrite phase: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 test location: "/health" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 test location: "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 using configuration "=/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http cl:443 max:104857600 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 rewrite phase: 3 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "PUT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script regex: "^(PUT)$" -2025/09/08 07:48:11 [notice] 1529234#1529234: *38 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script if -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script if: false -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 post rewrite phase: 4 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 generic phase: 5 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 generic phase: 6 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 generic phase: 7 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 access phase: 8 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 access phase: 9 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 access phase: 10 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 post access phase: 11 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 generic phase: 12 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 generic phase: 13 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http client request body preread 443 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http request body content length filter -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http body new buf t:1 f:0 000062E0E315C123, pos 000062E0E315C123, size: 443 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http init upstream, client timer: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "QUERY_STRING" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "PUT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "text/plain" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "443" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "CONTENT_LENGTH: 443" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "REQUEST_URI" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "./blobs" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "HTTP/1.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "http" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "CGI/1.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "nginx/" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "1.18.0" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "127.0.0.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "REMOTE_PORT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "44920" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "REMOTE_PORT: 44920" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "SERVER_ADDR" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "127.0.0.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "SERVER_PORT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "SERVER_NAME" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "localhost" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "200" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script var: "./blobs" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 fastcgi param: "HTTP_CONTENT_LENGTH: 443" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http cleanup add: 000062E0E3172698 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 get rr peer, try: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 stream socket 10 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #39 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 connected -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http upstream connect: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http upstream send request -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http upstream send request body -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 chain writer buf fl:0 s:584 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 chain writer buf fl:0 s:443 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 chain writer buf fl:0 s:13 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 chain writer in: 000062E0E3172708 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 writev: 1040 of 1040 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 chain writer out: 0000000000000000 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 event timer add: 10: 60000:585851523 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http request count:2 blk:0 -2025/09/08 07:48:11 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http run request: "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http upstream check client, write event:1, "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C9 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http upstream request: "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http upstream dummy handler -2025/09/08 07:48:11 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll timer: 59999 -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C9 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http upstream request: "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http upstream process header -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 recv: eof:1, avail:-1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 recv: fd:10 376 of 4096 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 07 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 87 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record length: 135 -2025/09/08 07:48:11 [error] 1529234#1529234: *38 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:11] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:11] PUT /report - Auth: none - Status: 415" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 07 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record length: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 06 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: C0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record length: 192 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi parser: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi header: "Status: 415 Error" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi parser: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi parser: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi header done -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 HTTP/1.1 415 Error -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:11 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 174 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http write filter: l:0 f:0 s:174 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http cacheable: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http upstream process upstream -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 pipe read upstream: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 pipe preread: 163 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 readv: eof:1, avail:0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 readv: 1, last:3720 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 pipe recv chain: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E3163215, size: 163 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 pipe length: -1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 input buf #0 000062E0E3163215 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 06 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record length: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi closed stdout -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 03 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 08 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi record length: 8 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http fastcgi sent end request -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 input buf 000062E0E3163215 139 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 pipe write downstream: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 pipe write downstream flush in -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http output filter "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http copy filter: "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http postpone filter "/report?" 000062E0E31726D8 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http chunk: 139 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 174 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 write new buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E3163215, size: 139 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http write filter: l:0 f:0 s:319 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http copy filter: 0 "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 pipe write downstream done -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 event timer: 10, old: 585851523, new: 585851524 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http upstream exit: 0000000000000000 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 finalize http upstream request: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 finalize http fastcgi request -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 free rr peer 1 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 close http upstream connection: 10 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 event timer del: 10: 585851523 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 reusable connection: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http upstream temp fd: -1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http output filter "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http copy filter: "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http chunk: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 174 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 write old buf t:1 f:0 000062E0E3172850, pos 000062E0E3172850, size: 4 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E3163215, size: 139 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http write filter: l:1 f:0 s:324 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http write filter limit 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 writev: 324 of 324 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http write filter 0000000000000000 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http copy filter: 0 "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 set http keepalive handler -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http close request -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http log handler -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 free: 000062E0E3163140 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 free: 000062E0E3171870, unused: 14 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 free: 000062E0E3164150, unused: 2482 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 free: 000062E0E315C0A0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 hc free: 0000000000000000 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 hc busy: 0000000000000000 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 tcp_nodelay -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 reusable connection: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 event timer add: 6: 65000:585856524 -2025/09/08 07:48:11 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 http keepalive handler -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 recv: eof:1, avail:-1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 recv: fd:6 0 of 1024 -2025/09/08 07:48:11 [info] 1529234#1529234: *38 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 close http connection: 6 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 event timer del: 6: 585856524 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 reusable connection: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 free: 000062E0E315C0A0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *38 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:11 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:11 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 accept: 127.0.0.1:44934 fd:6 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 event timer add: 6: 60000:585851765 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 reusable connection: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:11 [debug] 1529234#1529234: timer delta: 240 -2025/09/08 07:48:11 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http wait request handler -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 recv: eof:0, avail:-1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 recv: fd:6 561 of 1024 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 reusable connection: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http process request line -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http uri: "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http args: "" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http exten: "" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http process request header line -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http header: "Host: localhost:9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http header: "Accept: */*" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http header: "Content-Type: application/json" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http header: "Content-Length: 424" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http header done -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 event timer del: 6: 585851765 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 generic phase: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 rewrite phase: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 test location: "/health" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 test location: "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 using configuration "=/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http cl:424 max:104857600 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 rewrite phase: 3 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "PUT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script regex: "^(PUT)$" -2025/09/08 07:48:11 [notice] 1529234#1529234: *40 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script if -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script if: false -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 post rewrite phase: 4 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 generic phase: 5 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 generic phase: 6 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 generic phase: 7 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 access phase: 8 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 access phase: 9 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 access phase: 10 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 post access phase: 11 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 generic phase: 12 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 generic phase: 13 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http client request body preread 424 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http request body content length filter -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http body new buf t:1 f:0 000062E0E315C129, pos 000062E0E315C129, size: 424 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http init upstream, client timer: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "QUERY_STRING" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "PUT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "application/json" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "424" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "CONTENT_LENGTH: 424" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "REQUEST_URI" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "./blobs" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "HTTP/1.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "http" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "CGI/1.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "nginx/" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "1.18.0" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "127.0.0.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "REMOTE_PORT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "44934" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "REMOTE_PORT: 44934" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "SERVER_ADDR" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "127.0.0.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "SERVER_PORT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "SERVER_NAME" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "localhost" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "200" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script var: "./blobs" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 fastcgi param: "HTTP_CONTENT_LENGTH: 424" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http cleanup add: 000062E0E3172698 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 get rr peer, try: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 stream socket 10 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #41 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 connected -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http upstream connect: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http upstream send request -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http upstream send request body -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 chain writer buf fl:0 s:592 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 chain writer buf fl:0 s:424 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 chain writer buf fl:0 s:8 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 chain writer in: 000062E0E3172708 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 writev: 1024 of 1024 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 chain writer out: 0000000000000000 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 event timer add: 10: 60000:585851765 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http request count:2 blk:0 -2025/09/08 07:48:11 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http run request: "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http upstream check client, write event:1, "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C8 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http upstream request: "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http upstream dummy handler -2025/09/08 07:48:11 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll timer: 59999 -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C8 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http upstream request: "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http upstream process header -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 malloc: 000062E0E3163140:4096 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 posix_memalign: 000062E0E3164150:4096 @16 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 recv: eof:1, avail:-1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 recv: fd:10 328 of 4096 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 07 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 90 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record length: 144 -2025/09/08 07:48:11 [error] 1529234#1529234: *40 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:11] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:11] PUT /report - Auth: authenticated - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 07 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record length: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 06 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 84 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 04 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record length: 132 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi parser: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi header: "Status: 200 OK" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi parser: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi parser: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi header done -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:11 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 write new buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http write filter: l:0 f:0 s:260 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http cacheable: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http upstream process upstream -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 pipe read upstream: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 pipe preread: 110 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 readv: eof:1, avail:0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 readv: 1, last:3768 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 pipe recv chain: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 pipe buf free s:0 t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 110 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 pipe length: -1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 input buf #0 000062E0E316321A -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 06 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record length: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi closed stdout -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 03 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 08 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi record length: 8 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http fastcgi sent end request -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 input buf 000062E0E316321A 82 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 pipe write downstream: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 pipe write downstream flush in -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http output filter "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http copy filter: "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http postpone filter "/report?" 000062E0E31726D8 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http chunk: 82 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 write new buf t:1 f:0 000062E0E3172848, pos 000062E0E3172848, size: 4 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 write new buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http write filter: l:0 f:0 s:348 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http copy filter: 0 "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 pipe write downstream done -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 event timer: 10, old: 585851765, new: 585851768 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http upstream exit: 0000000000000000 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 finalize http upstream request: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 finalize http fastcgi request -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 free rr peer 1 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 close http upstream connection: 10 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 event timer del: 10: 585851765 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 reusable connection: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http upstream temp fd: -1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http output filter "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http copy filter: "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http chunk: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 write old buf t:1 f:0 000062E0E31642F0, pos 000062E0E31642F0, size: 260 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 write old buf t:1 f:0 000062E0E3172848, pos 000062E0E3172848, size: 4 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 write old buf t:1 f:0 000062E0E3163140, pos 000062E0E316321A, size: 82 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http write filter: l:1 f:0 s:353 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http write filter limit 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 writev: 353 of 353 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http write filter 0000000000000000 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http copy filter: 0 "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 set http keepalive handler -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http close request -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http log handler -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 free: 000062E0E3163140 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 free: 000062E0E3171870, unused: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 free: 000062E0E3164150, unused: 2410 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 free: 000062E0E315C0A0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 hc free: 0000000000000000 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 hc busy: 0000000000000000 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 tcp_nodelay -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 reusable connection: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 event timer add: 6: 65000:585856768 -2025/09/08 07:48:11 [debug] 1529234#1529234: timer delta: 2 -2025/09/08 07:48:11 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 http keepalive handler -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 recv: eof:1, avail:-1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 recv: fd:6 0 of 1024 -2025/09/08 07:48:11 [info] 1529234#1529234: *40 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 close http connection: 6 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 event timer del: 6: 585856768 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 reusable connection: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 free: 000062E0E315C0A0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *40 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:11 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:5 ev:0001 d:000074D8A809E010 -2025/09/08 07:48:11 [debug] 1529234#1529234: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: posix_memalign: 000062E0E3159840:512 @16 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 accept: 127.0.0.1:44950 fd:6 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 event timer add: 6: 60000:585852066 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 reusable connection: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:48:11 [debug] 1529234#1529234: timer delta: 297 -2025/09/08 07:48:11 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:6 ev:0001 d:000074D8A809E1E0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http wait request handler -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 recv: eof:0, avail:-1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 recv: fd:6 1024 of 1024 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 recv: avail:539 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 reusable connection: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 posix_memalign: 000062E0E317B500:4096 @16 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http process request line -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http request line: "PUT /report HTTP/1.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http uri: "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http args: "" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http exten: "" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 posix_memalign: 000062E0E3171870:4096 @16 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http process request header line -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http header: "Host: localhost:9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http header: "Accept: */*" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http header: "Content-Type: application/json" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http header: "Content-Length: 1425" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http header done -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 event timer del: 6: 585852066 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 generic phase: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 rewrite phase: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 test location: "/health" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 test location: "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 using configuration "=/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http cl:1425 max:104857600 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 rewrite phase: 3 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "PUT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script regex: "^(PUT)$" -2025/09/08 07:48:11 [notice] 1529234#1529234: *42 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", host: "localhost:9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script if -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script if: false -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 post rewrite phase: 4 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 generic phase: 5 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 generic phase: 6 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 generic phase: 7 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 access phase: 8 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 access phase: 9 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 access phase: 10 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 post access phase: 11 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 generic phase: 12 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 generic phase: 13 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http client request body preread 886 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http request body content length filter -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http body new buf t:1 f:0 000062E0E315C12A, pos 000062E0E315C12A, size: 886 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http read client request body -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 recv: eof:0, avail:539 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 recv: fd:6 539 of 539 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 recv: avail:0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http client request body recv 539 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http body new buf t:1 f:0 000062E0E31722F0, pos 000062E0E31722F0, size: 539 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http client request body rest 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http init upstream, client timer: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "QUERY_STRING" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "QUERY_STRING: " -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "REQUEST_METHOD" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "PUT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "CONTENT_TYPE" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "application/json" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "CONTENT_LENGTH" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "1425" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "CONTENT_LENGTH: 1425" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "SCRIPT_NAME" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "SCRIPT_NAME: /report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "REQUEST_URI" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "REQUEST_URI: /report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "DOCUMENT_URI" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "DOCUMENT_URI: /report" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "./blobs" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "HTTP/1.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "REQUEST_SCHEME" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "http" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "CGI/1.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "nginx/" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "1.18.0" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "REMOTE_ADDR" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "127.0.0.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "REMOTE_PORT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "44950" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "REMOTE_PORT: 44950" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "SERVER_ADDR" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "127.0.0.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "SERVER_PORT" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "SERVER_NAME" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "localhost" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "REDIRECT_STATUS" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "200" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script var: "./blobs" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http script copy: "/ginxsom.fcgi" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 fastcgi param: "HTTP_CONTENT_LENGTH: 1425" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 posix_memalign: 000062E0E3163140:4096 @16 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http cleanup add: 000062E0E3163350 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 get rr peer, try: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 stream socket 10 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #43 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 connected -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http upstream connect: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 posix_memalign: 000062E0E3142F20:128 @16 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http upstream send request -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http upstream send request body -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 chain writer buf fl:0 s:600 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 chain writer buf fl:0 s:886 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 chain writer buf fl:0 s:10 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 chain writer buf fl:0 s:539 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 chain writer buf fl:0 s:13 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 chain writer in: 000062E0E31633E0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 writev: 2048 of 2048 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 chain writer out: 0000000000000000 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 event timer add: 10: 60000:585852066 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http finalize request: -4, "/report?" a:1, c:2 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http request count:2 blk:0 -2025/09/08 07:48:11 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll timer: 60000 -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:6 ev:0004 d:000074D8A809E1E0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http run request: "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http upstream check client, write event:1, "/report" -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:10 ev:0004 d:000074D8A809E2C9 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http upstream request: "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http upstream dummy handler -2025/09/08 07:48:11 [debug] 1529234#1529234: timer delta: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll timer: 59999 -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:10 ev:2005 d:000074D8A809E2C9 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http upstream request: "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http upstream process header -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 malloc: 000062E0E3164150:4096 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 recv: eof:1, avail:-1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 recv: fd:10 328 of 4096 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 07 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 90 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record length: 144 -2025/09/08 07:48:11 [error] 1529234#1529234: *42 FastCGI sent in stderr: "LOG: [2025-09-08 07:48:11] PUT /report - Auth: pending - Status: 0 -LOG: [2025-09-08 07:48:11] PUT /report - Auth: authenticated - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /report HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 07 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record length: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 06 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 83 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 05 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record length: 131 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi parser: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi header: "Status: 200 OK" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi parser: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi parser: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi header done -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:48:11 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 write new buf t:1 f:0 000062E0E31636C0, pos 000062E0E31636C0, size: 260 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http write filter: l:0 f:0 s:260 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http cacheable: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http upstream process upstream -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 pipe read upstream: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 pipe preread: 110 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 readv: eof:1, avail:0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 readv: 1, last:3768 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 pipe recv chain: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 pipe buf free s:0 t:1 f:0 000062E0E3164150, pos 000062E0E316422A, size: 110 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 pipe length: -1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 input buf #0 000062E0E316422A -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 06 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record length: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi closed stdout -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 03 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 01 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 08 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record byte: 00 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi record length: 8 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http fastcgi sent end request -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 input buf 000062E0E316422A 81 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 pipe write downstream: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 pipe write downstream flush in -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http output filter "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http copy filter: "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http postpone filter "/report?" 000062E0E31633B0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http chunk: 81 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 write old buf t:1 f:0 000062E0E31636C0, pos 000062E0E31636C0, size: 260 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 write new buf t:1 f:0 000062E0E3163A08, pos 000062E0E3163A08, size: 4 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 write new buf t:1 f:0 000062E0E3164150, pos 000062E0E316422A, size: 81 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http write filter: l:0 f:0 s:347 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http copy filter: 0 "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 pipe write downstream done -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 event timer: 10, old: 585852066, new: 585852071 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http upstream exit: 0000000000000000 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 finalize http upstream request: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 finalize http fastcgi request -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 free rr peer 1 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 close http upstream connection: 10 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 free: 000062E0E3142F20, unused: 48 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 event timer del: 10: 585852066 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 reusable connection: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http upstream temp fd: -1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http output filter "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http copy filter: "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http postpone filter "/report?" 00007FFD166139A0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http chunk: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 write old buf t:1 f:0 000062E0E31636C0, pos 000062E0E31636C0, size: 260 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 write old buf t:1 f:0 000062E0E3163A08, pos 000062E0E3163A08, size: 4 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 write old buf t:1 f:0 000062E0E3164150, pos 000062E0E316422A, size: 81 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 write old buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E8, size: 2 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 write new buf t:0 f:0 0000000000000000, pos 000062E0D3AAC2E5, size: 5 file: 0, size: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http write filter: l:1 f:0 s:352 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http write filter limit 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 writev: 352 of 352 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http write filter 0000000000000000 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http copy filter: 0 "/report?" -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http finalize request: 0, "/report?" a:1, c:1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 set http keepalive handler -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http close request -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http log handler -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 free: 000062E0E3164150 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 free: 000062E0E317B500, unused: 3 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 free: 000062E0E3171870, unused: 14 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 free: 000062E0E3163140, unused: 1442 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 free: 000062E0E315C0A0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 hc free: 0000000000000000 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 hc busy: 0000000000000000 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 tcp_nodelay -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 reusable connection: 1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 event timer add: 6: 65000:585857071 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 post event 000062E0E31D12D0 -2025/09/08 07:48:11 [debug] 1529234#1529234: timer delta: 4 -2025/09/08 07:48:11 [debug] 1529234#1529234: posted event 000062E0E31D12D0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 delete posted event 000062E0E31D12D0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http keepalive handler -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 recv: eof:0, avail:0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 free: 000062E0E315C0A0 -2025/09/08 07:48:11 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll timer: 65000 -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll: fd:6 ev:2005 d:000074D8A809E1E0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 http keepalive handler -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 malloc: 000062E0E315C0A0:1024 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 recv: eof:1, avail:-1 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 recv: fd:6 0 of 1024 -2025/09/08 07:48:11 [info] 1529234#1529234: *42 client 127.0.0.1 closed keepalive connection -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 close http connection: 6 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 event timer del: 6: 585857071 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 reusable connection: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 free: 000062E0E315C0A0 -2025/09/08 07:48:11 [debug] 1529234#1529234: *42 free: 000062E0E3159840, unused: 120 -2025/09/08 07:48:11 [debug] 1529234#1529234: timer delta: 0 -2025/09/08 07:48:11 [debug] 1529234#1529234: worker cycle -2025/09/08 07:48:11 [debug] 1529234#1529234: epoll timer: -1 -2025/09/08 07:52:48 [notice] 1529233#1529233: signal 15 (SIGTERM) received from 1531981, exiting -2025/09/08 07:52:48 [debug] 1529233#1529233: wake up, sigio 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: child: 0 1529234 e:0 t:0 d:0 r:1 j:0 -2025/09/08 07:52:48 [debug] 1529233#1529233: termination cycle: 50 -2025/09/08 07:52:48 [debug] 1529233#1529233: sigsuspend -2025/09/08 07:52:48 [debug] 1529234#1529234: epoll: fd:7 ev:0001 d:000074D8A809E0F8 -2025/09/08 07:52:48 [debug] 1529234#1529234: channel handler -2025/09/08 07:52:48 [debug] 1529234#1529234: channel: 32 -2025/09/08 07:52:48 [debug] 1529234#1529234: channel command: 4 -2025/09/08 07:52:48 [debug] 1529234#1529234: channel: -2 -2025/09/08 07:52:48 [debug] 1529234#1529234: timer delta: 276855 -2025/09/08 07:52:48 [notice] 1529234#1529234: exiting -2025/09/08 07:52:48 [debug] 1529234#1529234: flush files -2025/09/08 07:52:48 [debug] 1529234#1529234: run cleanup: 000062E0E31CE4E0 -2025/09/08 07:52:48 [debug] 1529234#1529234: run cleanup: 000062E0E31B6EC0 -2025/09/08 07:52:48 [debug] 1529234#1529234: cleanup resolver -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E31CF940 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E31BA720 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E317D620 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E317C510 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E31764E0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E3175420 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E3174360 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E31732A0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E3168160 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E315F130, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E316C050, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E31774F0, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E317E630, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E3182640, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E3186650, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E318A660, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E318E670, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E3192680, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E3196690, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E319A6A0, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E319E6B0, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E31A26C0, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E31A66D0, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E31AA6E0, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E31AE6F0, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E31B2700, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E31B6710, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E31BB8F0, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E31BF900, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E31C3910, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E31C7920, unused: 0 -2025/09/08 07:52:48 [debug] 1529234#1529234: free: 000062E0E31CB930, unused: 5176 -2025/09/08 07:52:48 [notice] 1529234#1529234: exit -2025/09/08 07:52:48 [notice] 1529233#1529233: signal 17 (SIGCHLD) received from 1529234 -2025/09/08 07:52:48 [notice] 1529233#1529233: worker process 1529234 exited with code 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: shmtx forced unlock -2025/09/08 07:52:48 [debug] 1529233#1529233: wake up, sigio 3 -2025/09/08 07:52:48 [debug] 1529233#1529233: reap children -2025/09/08 07:52:48 [debug] 1529233#1529233: child: 0 1529234 e:1 t:1 d:0 r:1 j:0 -2025/09/08 07:52:48 [notice] 1529233#1529233: exit -2025/09/08 07:52:48 [debug] 1529233#1529233: close listening 0.0.0.0:9001 #5 -2025/09/08 07:52:48 [debug] 1529233#1529233: run cleanup: 000062E0E31B6EC0 -2025/09/08 07:52:48 [debug] 1529233#1529233: cleanup resolver -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E31CF940 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E31BA720 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E317D620 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E317C510 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E31764E0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E3175420 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E3174360 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E31732A0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E3168160 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E315F130, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E316C050, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E31774F0, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E317E630, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E3182640, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E3186650, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E318A660, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E318E670, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E3192680, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E3196690, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E319A6A0, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E319E6B0, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E31A26C0, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E31A66D0, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E31AA6E0, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E31AE6F0, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E31B2700, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E31B6710, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E31BB8F0, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E31BF900, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E31C3910, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E31C7920, unused: 0 -2025/09/08 07:52:48 [debug] 1529233#1529233: free: 000062E0E31CB930, unused: 5207 -2025/09/08 07:52:51 [debug] 1532010#1532010: bind() 0.0.0.0:9001 #5 -2025/09/08 07:52:51 [debug] 1532010#1532010: counter: 00007393CC16E080, 1 -2025/09/08 07:52:51 [debug] 1532011#1532011: bind() 0.0.0.0:9001 #5 -2025/09/08 07:52:51 [notice] 1532011#1532011: using the "epoll" event method -2025/09/08 07:52:51 [debug] 1532011#1532011: counter: 0000789CF7B6B080, 1 -2025/09/08 07:52:51 [notice] 1532011#1532011: nginx/1.18.0 (Ubuntu) -2025/09/08 07:52:51 [notice] 1532011#1532011: OS: Linux 6.12.10-76061203-generic -2025/09/08 07:52:51 [notice] 1532011#1532011: getrlimit(RLIMIT_NOFILE): 1048576:1048576 -2025/09/08 07:52:51 [debug] 1532012#1532011: write: 6, 00007FFCD9735200, 8, 0 -2025/09/08 07:52:51 [debug] 1532012#1532012: setproctitle: "nginx: master process nginx -p . -c config/local-nginx.conf" -2025/09/08 07:52:51 [notice] 1532012#1532012: start worker processes -2025/09/08 07:52:51 [debug] 1532012#1532012: channel 6:7 -2025/09/08 07:52:51 [notice] 1532012#1532012: start worker process 1532013 -2025/09/08 07:52:51 [debug] 1532012#1532012: sigsuspend -2025/09/08 07:52:51 [debug] 1532013#1532013: add cleanup: 0000585C9EB2C4E0 -2025/09/08 07:52:51 [debug] 1532013#1532013: malloc: 0000585C9EAB8BD0:8 -2025/09/08 07:52:51 [debug] 1532013#1532013: notify eventfd: 9 -2025/09/08 07:52:51 [debug] 1532013#1532013: testing the EPOLLRDHUP flag: success -2025/09/08 07:52:51 [debug] 1532013#1532013: malloc: 0000585C9EACE060:6144 -2025/09/08 07:52:51 [debug] 1532013#1532013: malloc: 0000789CF7963010:237568 -2025/09/08 07:52:51 [debug] 1532013#1532013: malloc: 0000585C9EB2F210:98304 -2025/09/08 07:52:51 [debug] 1532013#1532013: malloc: 0000585C9EB47220:98304 -2025/09/08 07:52:51 [debug] 1532013#1532013: epoll add event: fd:5 op:1 ev:00002001 -2025/09/08 07:52:51 [debug] 1532013#1532013: epoll add event: fd:7 op:1 ev:00002001 -2025/09/08 07:52:51 [debug] 1532013#1532013: setproctitle: "nginx: worker process" -2025/09/08 07:52:51 [debug] 1532013#1532013: worker cycle -2025/09/08 07:52:51 [debug] 1532013#1532013: epoll timer: -1 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:5 ev:0001 d:0000789CF7963010 -2025/09/08 07:55:35 [debug] 1532013#1532013: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: posix_memalign: 0000585C9EAB7840:512 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 accept: 127.0.0.1:46154 fd:6 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 event timer add: 6: 60000:586295514 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 reusable connection: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 163378 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 60000 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:6 ev:0001 d:0000789CF79631E0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http wait request handler -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 malloc: 0000585C9EABA0A0:1024 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 recv: eof:0, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 recv: fd:6 197 of 1024 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 reusable connection: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 posix_memalign: 0000585C9EAD9500:4096 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http process request line -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http request line: "PUT /upload HTTP/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http uri: "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http args: "" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http exten: "" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 posix_memalign: 0000585C9EACF870:4096 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http process request header line -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http header: "Host: localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http header: "Accept: */*" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http header: "Content-Type: image/png" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http header: "Content-Length: 68" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http header done -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 event timer del: 6: 586295514 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 generic phase: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 rewrite phase: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 test location: "/health" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 test location: "/report" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 test location: "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 using configuration "=/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http cl:68 max:104857600 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 rewrite phase: 3 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "PUT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script regex: "^(PUT|HEAD)$" -2025/09/08 07:55:35 [notice] 1532013#1532013: *1 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script if -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script if: false -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 post rewrite phase: 4 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 generic phase: 5 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 generic phase: 6 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 generic phase: 7 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 access phase: 8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 access phase: 9 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 access phase: 10 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 post access phase: 11 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 generic phase: 12 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 generic phase: 13 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http client request body preread 68 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http request body content length filter -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http body new buf t:1 f:0 0000585C9EABA121, pos 0000585C9EABA121, size: 68 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http init upstream, client timer: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "QUERY_STRING" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "QUERY_STRING: " -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "REQUEST_METHOD" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "PUT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "CONTENT_TYPE" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "image/png" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "CONTENT_TYPE: image/png" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "CONTENT_LENGTH" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "68" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "CONTENT_LENGTH: 68" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "SCRIPT_NAME" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "REQUEST_URI" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "REQUEST_URI: /upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "DOCUMENT_URI" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "./blobs" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "HTTP/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "REQUEST_SCHEME" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "http" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "CGI/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "nginx/" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "1.18.0" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "REMOTE_ADDR" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "127.0.0.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "REMOTE_PORT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "46154" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "REMOTE_PORT: 46154" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "SERVER_ADDR" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "127.0.0.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "SERVER_PORT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "SERVER_NAME" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "localhost" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "REDIRECT_STATUS" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "200" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script var: "./blobs" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http script copy: "/ginxsom.fcgi" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "HTTP_CONTENT_TYPE: image/png" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 fastcgi param: "HTTP_CONTENT_LENGTH: 68" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http cleanup add: 0000585C9EAD0690 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 get rr peer, try: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 stream socket 10 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #2 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 connected -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream connect: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 posix_memalign: 0000585C9EAA0F20:128 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream send request -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream send request body -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 chain writer buf fl:0 s:576 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 chain writer buf fl:0 s:68 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 chain writer buf fl:0 s:12 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 chain writer in: 0000585C9EAD0700 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 writev: 656 of 656 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 chain writer out: 0000000000000000 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 event timer add: 10: 60000:586295514 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http request count:2 blk:0 -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 60000 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:6 ev:0004 d:0000789CF79631E0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http run request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream check client, write event:1, "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:10 ev:0004 d:0000789CF79632C8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream dummy handler -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 59999 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:10 ev:0005 d:0000789CF79632C8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream process header -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 malloc: 0000585C9EAC1140:4096 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 posix_memalign: 0000585C9EAC2150:4096 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 recv: eof:0, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 recv: fd:10 152 of 4096 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 07 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 8A -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 06 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record length: 138 -2025/09/08 07:55:35 [error] 1532013#1532013: *1 FastCGI sent in stderr: "LOG: [2025-09-08 07:55:35] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-08 07:55:35] PUT /upload - Auth: anonymous - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 recv: eof:0, avail:0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream dummy handler -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 59999 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:10 ev:0005 d:0000789CF79632C8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream process header -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 recv: eof:0, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 recv: fd:10 416 of 3944 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 07 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 82 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 06 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record length: 130 -2025/09/08 07:55:35 [error] 1532013#1532013: *1 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: NO -LOG: [2025-09-08 07:55:35] PUT /upload - Auth: missing_auth - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 07 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record length: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 06 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: E5 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 03 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record length: 229 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi parser: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi header: "Status: 401 Unauthorized" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi parser: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi parser: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi header done -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:55:35 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 write new buf t:1 f:0 0000585C9EAC22F0, pos 0000585C9EAC22F0, size: 181 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http write filter: l:0 f:0 s:181 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http cacheable: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream process upstream -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe read upstream: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe preread: 196 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe buf free s:0 t:1 f:0 0000585C9EAC1140, pos 0000585C9EAC12B4, size: 196 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe length: -1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe write downstream: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe write busy: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe write: out:0000000000000000, f:0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe read upstream: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe buf free s:0 t:1 f:0 0000585C9EAC1140, pos 0000585C9EAC12B4, size: 196 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe length: -1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 event timer: 10, old: 586295514, new: 586295515 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream dummy handler -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 59999 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:10 ev:2005 d:0000789CF79632C8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream process upstream -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe read upstream: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 readv: eof:1, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 readv: 1, last:3528 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe recv chain: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe buf free s:0 t:1 f:0 0000585C9EAC1140, pos 0000585C9EAC12B4, size: 196 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe length: -1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 input buf #0 0000585C9EAC12B4 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 06 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record length: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi closed stdout -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 03 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 08 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi record length: 8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http fastcgi sent end request -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 input buf 0000585C9EAC12B4 169 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe write downstream: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe write downstream flush in -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http output filter "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http copy filter: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http postpone filter "/upload?" 0000585C9EAD06D0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http chunk: 169 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 write old buf t:1 f:0 0000585C9EAC22F0, pos 0000585C9EAC22F0, size: 181 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 write new buf t:1 f:0 0000585C9EAD0848, pos 0000585C9EAD0848, size: 4 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 write new buf t:1 f:0 0000585C9EAC1140, pos 0000585C9EAC12B4, size: 169 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 write new buf t:0 f:0 0000000000000000, pos 0000585C878292E8, size: 2 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http write filter: l:0 f:0 s:356 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http copy filter: 0 "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 pipe write downstream done -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 event timer: 10, old: 586295514, new: 586295515 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream exit: 0000000000000000 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 finalize http upstream request: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 finalize http fastcgi request -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 free rr peer 1 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 close http upstream connection: 10 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 free: 0000585C9EAA0F20, unused: 48 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 event timer del: 10: 586295514 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 reusable connection: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http upstream temp fd: -1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http output filter "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http copy filter: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http postpone filter "/upload?" 00007FFCD9734E40 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http chunk: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 write old buf t:1 f:0 0000585C9EAC22F0, pos 0000585C9EAC22F0, size: 181 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 write old buf t:1 f:0 0000585C9EAD0848, pos 0000585C9EAD0848, size: 4 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 write old buf t:1 f:0 0000585C9EAC1140, pos 0000585C9EAC12B4, size: 169 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 write old buf t:0 f:0 0000000000000000, pos 0000585C878292E8, size: 2 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 write new buf t:0 f:0 0000000000000000, pos 0000585C878292E5, size: 5 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http write filter: l:1 f:0 s:361 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http write filter limit 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 writev: 361 of 361 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http write filter 0000000000000000 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http copy filter: 0 "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 set http keepalive handler -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http close request -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http log handler -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 free: 0000585C9EAC1140 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 free: 0000585C9EAD9500, unused: 3 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 free: 0000585C9EACF870, unused: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 free: 0000585C9EAC2150, unused: 2490 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 free: 0000585C9EABA0A0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 hc free: 0000000000000000 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 hc busy: 0000000000000000 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 tcp_nodelay -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 reusable connection: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 event timer add: 6: 65000:586300515 -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 65000 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:6 ev:2005 d:0000789CF79631E0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 http keepalive handler -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 malloc: 0000585C9EABA0A0:1024 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 recv: eof:1, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 recv: fd:6 0 of 1024 -2025/09/08 07:55:35 [info] 1532013#1532013: *1 client 127.0.0.1 closed keepalive connection -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 close http connection: 6 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 event timer del: 6: 586300515 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 reusable connection: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 free: 0000585C9EABA0A0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *1 free: 0000585C9EAB7840, unused: 120 -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: -1 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:5 ev:0001 d:0000789CF7963010 -2025/09/08 07:55:35 [debug] 1532013#1532013: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: posix_memalign: 0000585C9EAB7840:512 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 accept: 127.0.0.1:46166 fd:6 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 event timer add: 6: 60000:586295602 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 reusable connection: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 86 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 60000 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:6 ev:0001 d:0000789CF79631E1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http wait request handler -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 malloc: 0000585C9EABA0A0:1024 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 recv: eof:0, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 recv: fd:6 197 of 1024 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 reusable connection: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 posix_memalign: 0000585C9EAD9500:4096 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http process request line -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http request line: "PUT /upload HTTP/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http uri: "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http args: "" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http exten: "" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 posix_memalign: 0000585C9EACF870:4096 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http process request header line -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http header: "Host: localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http header: "Accept: */*" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http header: "Content-Type: image/png" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http header: "Content-Length: 68" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http header done -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 event timer del: 6: 586295602 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 generic phase: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 rewrite phase: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 test location: "/health" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 test location: "/report" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 test location: "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 using configuration "=/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http cl:68 max:104857600 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 rewrite phase: 3 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "PUT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script regex: "^(PUT|HEAD)$" -2025/09/08 07:55:35 [notice] 1532013#1532013: *3 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script if -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script if: false -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 post rewrite phase: 4 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 generic phase: 5 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 generic phase: 6 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 generic phase: 7 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 access phase: 8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 access phase: 9 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 access phase: 10 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 post access phase: 11 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 generic phase: 12 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 generic phase: 13 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http client request body preread 68 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http request body content length filter -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http body new buf t:1 f:0 0000585C9EABA121, pos 0000585C9EABA121, size: 68 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http init upstream, client timer: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "QUERY_STRING" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "QUERY_STRING: " -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "REQUEST_METHOD" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "PUT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "CONTENT_TYPE" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "image/png" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "CONTENT_TYPE: image/png" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "CONTENT_LENGTH" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "68" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "CONTENT_LENGTH: 68" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "SCRIPT_NAME" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "REQUEST_URI" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "REQUEST_URI: /upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "DOCUMENT_URI" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "./blobs" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "HTTP/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "REQUEST_SCHEME" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "http" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "CGI/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "nginx/" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "1.18.0" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "REMOTE_ADDR" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "127.0.0.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "REMOTE_PORT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "46166" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "REMOTE_PORT: 46166" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "SERVER_ADDR" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "127.0.0.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "SERVER_PORT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "SERVER_NAME" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "localhost" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "REDIRECT_STATUS" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "200" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script var: "./blobs" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http script copy: "/ginxsom.fcgi" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "HTTP_CONTENT_TYPE: image/png" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 fastcgi param: "HTTP_CONTENT_LENGTH: 68" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http cleanup add: 0000585C9EAD0690 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 get rr peer, try: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 stream socket 10 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #4 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 connected -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http upstream connect: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 posix_memalign: 0000585C9EAA0F20:128 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http upstream send request -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http upstream send request body -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 chain writer buf fl:0 s:576 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 chain writer buf fl:0 s:68 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 chain writer buf fl:0 s:12 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 chain writer in: 0000585C9EAD0700 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 writev: 656 of 656 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 chain writer out: 0000000000000000 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 event timer add: 10: 60000:586295603 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http request count:2 blk:0 -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 60000 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:6 ev:0004 d:0000789CF79631E1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http run request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http upstream check client, write event:1, "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:10 ev:0004 d:0000789CF79632C9 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http upstream request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http upstream dummy handler -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 59999 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:10 ev:0005 d:0000789CF79632C9 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http upstream request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http upstream process header -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 malloc: 0000585C9EAC1140:4096 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 posix_memalign: 0000585C9EAC2150:4096 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 recv: eof:0, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 recv: fd:10 152 of 4096 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 07 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 8A -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 06 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record length: 138 -2025/09/08 07:55:35 [error] 1532013#1532013: *3 FastCGI sent in stderr: "LOG: [2025-09-08 07:55:35] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-08 07:55:35] PUT /upload - Auth: anonymous - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 recv: eof:0, avail:0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http upstream request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http upstream dummy handler -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 59999 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:10 ev:2005 d:0000789CF79632C9 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http upstream request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http upstream process header -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 recv: eof:1, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 recv: fd:10 416 of 3944 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 07 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 82 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 06 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record length: 130 -2025/09/08 07:55:35 [error] 1532013#1532013: *3 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: NO -LOG: [2025-09-08 07:55:35] PUT /upload - Auth: missing_auth - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 07 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record length: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 06 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: E5 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 03 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record length: 229 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi parser: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi header: "Status: 401 Unauthorized" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi parser: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi parser: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi header done -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:55:35 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 write new buf t:1 f:0 0000585C9EAC22F0, pos 0000585C9EAC22F0, size: 181 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http write filter: l:0 f:0 s:181 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http cacheable: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http upstream process upstream -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 pipe read upstream: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 pipe preread: 196 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 readv: eof:1, avail:0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 readv: 1, last:3528 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 pipe recv chain: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 pipe buf free s:0 t:1 f:0 0000585C9EAC1140, pos 0000585C9EAC12B4, size: 196 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 pipe length: -1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 input buf #0 0000585C9EAC12B4 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 06 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record length: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi closed stdout -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 03 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 08 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi record length: 8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http fastcgi sent end request -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 input buf 0000585C9EAC12B4 169 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 pipe write downstream: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 pipe write downstream flush in -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http output filter "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http copy filter: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http postpone filter "/upload?" 0000585C9EAD06D0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http chunk: 169 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 write old buf t:1 f:0 0000585C9EAC22F0, pos 0000585C9EAC22F0, size: 181 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 write new buf t:1 f:0 0000585C9EAD0848, pos 0000585C9EAD0848, size: 4 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 write new buf t:1 f:0 0000585C9EAC1140, pos 0000585C9EAC12B4, size: 169 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 write new buf t:0 f:0 0000000000000000, pos 0000585C878292E8, size: 2 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http write filter: l:0 f:0 s:356 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http copy filter: 0 "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 pipe write downstream done -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 event timer: 10, old: 586295603, new: 586295604 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http upstream exit: 0000000000000000 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 finalize http upstream request: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 finalize http fastcgi request -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 free rr peer 1 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 close http upstream connection: 10 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 free: 0000585C9EAA0F20, unused: 48 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 event timer del: 10: 586295603 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 reusable connection: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http upstream temp fd: -1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http output filter "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http copy filter: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http postpone filter "/upload?" 00007FFCD9734E40 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http chunk: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 write old buf t:1 f:0 0000585C9EAC22F0, pos 0000585C9EAC22F0, size: 181 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 write old buf t:1 f:0 0000585C9EAD0848, pos 0000585C9EAD0848, size: 4 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 write old buf t:1 f:0 0000585C9EAC1140, pos 0000585C9EAC12B4, size: 169 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 write old buf t:0 f:0 0000000000000000, pos 0000585C878292E8, size: 2 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 write new buf t:0 f:0 0000000000000000, pos 0000585C878292E5, size: 5 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http write filter: l:1 f:0 s:361 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http write filter limit 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 writev: 361 of 361 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http write filter 0000000000000000 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http copy filter: 0 "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 set http keepalive handler -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http close request -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http log handler -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 free: 0000585C9EAC1140 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 free: 0000585C9EAD9500, unused: 3 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 free: 0000585C9EACF870, unused: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 free: 0000585C9EAC2150, unused: 2490 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 free: 0000585C9EABA0A0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 hc free: 0000000000000000 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 hc busy: 0000000000000000 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 tcp_nodelay -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 reusable connection: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 event timer add: 6: 65000:586300604 -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 65000 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:6 ev:2005 d:0000789CF79631E1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 http keepalive handler -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 malloc: 0000585C9EABA0A0:1024 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 recv: eof:1, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 recv: fd:6 0 of 1024 -2025/09/08 07:55:35 [info] 1532013#1532013: *3 client 127.0.0.1 closed keepalive connection -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 close http connection: 6 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 event timer del: 6: 586300604 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 reusable connection: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 free: 0000585C9EABA0A0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *3 free: 0000585C9EAB7840, unused: 120 -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: -1 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:5 ev:0001 d:0000789CF7963010 -2025/09/08 07:55:35 [debug] 1532013#1532013: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: posix_memalign: 0000585C9EAB7840:512 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 accept: 127.0.0.1:46174 fd:6 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 event timer add: 6: 60000:586295645 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 reusable connection: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 40 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 60000 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:6 ev:0001 d:0000789CF79631E0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http wait request handler -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 malloc: 0000585C9EABA0A0:1024 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 recv: eof:0, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 recv: fd:6 197 of 1024 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 reusable connection: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 posix_memalign: 0000585C9EAD9500:4096 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http process request line -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http request line: "PUT /upload HTTP/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http uri: "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http args: "" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http exten: "" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 posix_memalign: 0000585C9EACF870:4096 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http process request header line -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http header: "Host: localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http header: "Accept: */*" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http header: "Content-Type: image/png" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http header: "Content-Length: 68" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http header done -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 event timer del: 6: 586295645 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 generic phase: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 rewrite phase: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 test location: "/health" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 test location: "/report" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 test location: "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 using configuration "=/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http cl:68 max:104857600 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 rewrite phase: 3 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "PUT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script regex: "^(PUT|HEAD)$" -2025/09/08 07:55:35 [notice] 1532013#1532013: *5 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script if -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script if: false -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 post rewrite phase: 4 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 generic phase: 5 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 generic phase: 6 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 generic phase: 7 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 access phase: 8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 access phase: 9 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 access phase: 10 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 post access phase: 11 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 generic phase: 12 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 generic phase: 13 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http client request body preread 68 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http request body content length filter -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http body new buf t:1 f:0 0000585C9EABA121, pos 0000585C9EABA121, size: 68 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http init upstream, client timer: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "QUERY_STRING" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "QUERY_STRING: " -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "REQUEST_METHOD" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "PUT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "CONTENT_TYPE" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "image/png" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "CONTENT_TYPE: image/png" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "CONTENT_LENGTH" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "68" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "CONTENT_LENGTH: 68" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "SCRIPT_NAME" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "REQUEST_URI" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "REQUEST_URI: /upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "DOCUMENT_URI" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "./blobs" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "HTTP/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "REQUEST_SCHEME" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "http" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "CGI/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "nginx/" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "1.18.0" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "REMOTE_ADDR" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "127.0.0.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "REMOTE_PORT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "46174" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "REMOTE_PORT: 46174" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "SERVER_ADDR" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "127.0.0.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "SERVER_PORT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "SERVER_NAME" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "localhost" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "REDIRECT_STATUS" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "200" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script var: "./blobs" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http script copy: "/ginxsom.fcgi" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "HTTP_CONTENT_TYPE: image/png" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 fastcgi param: "HTTP_CONTENT_LENGTH: 68" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http cleanup add: 0000585C9EAD0690 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 get rr peer, try: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 stream socket 10 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #6 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 connected -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream connect: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 posix_memalign: 0000585C9EAA0F20:128 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream send request -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream send request body -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 chain writer buf fl:0 s:576 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 chain writer buf fl:0 s:68 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 chain writer buf fl:0 s:12 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 chain writer in: 0000585C9EAD0700 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 writev: 656 of 656 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 chain writer out: 0000000000000000 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 event timer add: 10: 60000:586295645 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http request count:2 blk:0 -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 60000 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:6 ev:0004 d:0000789CF79631E0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http run request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream check client, write event:1, "/upload" -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:10 ev:0004 d:0000789CF79632C8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream dummy handler -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 59999 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:10 ev:0005 d:0000789CF79632C8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream process header -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 malloc: 0000585C9EAC1140:4096 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 posix_memalign: 0000585C9EAC2150:4096 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 recv: eof:0, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 recv: fd:10 152 of 4096 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 07 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 8A -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 06 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record length: 138 -2025/09/08 07:55:35 [error] 1532013#1532013: *5 FastCGI sent in stderr: "LOG: [2025-09-08 07:55:35] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-08 07:55:35] PUT /upload - Auth: anonymous - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 recv: eof:0, avail:0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream dummy handler -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 59999 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:10 ev:0005 d:0000789CF79632C8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream process header -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 recv: eof:0, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 recv: fd:10 416 of 3944 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 07 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 82 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 06 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record length: 130 -2025/09/08 07:55:35 [error] 1532013#1532013: *5 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: NO -LOG: [2025-09-08 07:55:35] PUT /upload - Auth: missing_auth - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 07 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record length: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 06 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: E5 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 03 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record length: 229 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi parser: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi header: "Status: 401 Unauthorized" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi parser: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi parser: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi header done -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:55:35 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 write new buf t:1 f:0 0000585C9EAC22F0, pos 0000585C9EAC22F0, size: 181 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http write filter: l:0 f:0 s:181 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http cacheable: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream process upstream -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe read upstream: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe preread: 196 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe buf free s:0 t:1 f:0 0000585C9EAC1140, pos 0000585C9EAC12B4, size: 196 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe length: -1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe write downstream: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe write busy: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe write: out:0000000000000000, f:0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe read upstream: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe buf free s:0 t:1 f:0 0000585C9EAC1140, pos 0000585C9EAC12B4, size: 196 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe length: -1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 event timer: 10, old: 586295645, new: 586295646 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream dummy handler -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 59999 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:10 ev:2005 d:0000789CF79632C8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream request: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream process upstream -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe read upstream: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 readv: eof:1, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 readv: 1, last:3528 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe recv chain: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe buf free s:0 t:1 f:0 0000585C9EAC1140, pos 0000585C9EAC12B4, size: 196 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe length: -1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 input buf #0 0000585C9EAC12B4 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 06 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record length: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi closed stdout -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 03 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 08 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi record length: 8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http fastcgi sent end request -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 input buf 0000585C9EAC12B4 169 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe write downstream: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe write downstream flush in -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http output filter "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http copy filter: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http postpone filter "/upload?" 0000585C9EAD06D0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http chunk: 169 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 write old buf t:1 f:0 0000585C9EAC22F0, pos 0000585C9EAC22F0, size: 181 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 write new buf t:1 f:0 0000585C9EAD0848, pos 0000585C9EAD0848, size: 4 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 write new buf t:1 f:0 0000585C9EAC1140, pos 0000585C9EAC12B4, size: 169 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 write new buf t:0 f:0 0000000000000000, pos 0000585C878292E8, size: 2 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http write filter: l:0 f:0 s:356 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http copy filter: 0 "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 pipe write downstream done -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 event timer: 10, old: 586295645, new: 586295646 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream exit: 0000000000000000 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 finalize http upstream request: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 finalize http fastcgi request -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 free rr peer 1 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 close http upstream connection: 10 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 free: 0000585C9EAA0F20, unused: 48 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 event timer del: 10: 586295645 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 reusable connection: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http upstream temp fd: -1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http output filter "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http copy filter: "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http postpone filter "/upload?" 00007FFCD9734E40 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http chunk: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 write old buf t:1 f:0 0000585C9EAC22F0, pos 0000585C9EAC22F0, size: 181 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 write old buf t:1 f:0 0000585C9EAD0848, pos 0000585C9EAD0848, size: 4 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 write old buf t:1 f:0 0000585C9EAC1140, pos 0000585C9EAC12B4, size: 169 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 write old buf t:0 f:0 0000000000000000, pos 0000585C878292E8, size: 2 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 write new buf t:0 f:0 0000000000000000, pos 0000585C878292E5, size: 5 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http write filter: l:1 f:0 s:361 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http write filter limit 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 writev: 361 of 361 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http write filter 0000000000000000 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http copy filter: 0 "/upload?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 set http keepalive handler -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http close request -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http log handler -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 free: 0000585C9EAC1140 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 free: 0000585C9EAD9500, unused: 3 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 free: 0000585C9EACF870, unused: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 free: 0000585C9EAC2150, unused: 2490 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 free: 0000585C9EABA0A0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 hc free: 0000000000000000 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 hc busy: 0000000000000000 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 tcp_nodelay -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 reusable connection: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 event timer add: 6: 65000:586300646 -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 65000 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:6 ev:2005 d:0000789CF79631E0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 http keepalive handler -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 malloc: 0000585C9EABA0A0:1024 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 recv: eof:1, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 recv: fd:6 0 of 1024 -2025/09/08 07:55:35 [info] 1532013#1532013: *5 client 127.0.0.1 closed keepalive connection -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 close http connection: 6 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 event timer del: 6: 586300646 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 reusable connection: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 free: 0000585C9EABA0A0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *5 free: 0000585C9EAB7840, unused: 120 -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: -1 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:5 ev:0001 d:0000789CF7963010 -2025/09/08 07:55:35 [debug] 1532013#1532013: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: posix_memalign: 0000585C9EAB7840:512 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 accept: 127.0.0.1:46180 fd:6 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 event timer add: 6: 60000:586295679 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 reusable connection: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 32 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 60000 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:6 ev:0001 d:0000789CF79631E1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http wait request handler -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 malloc: 0000585C9EABA0A0:1024 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 recv: eof:0, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 recv: fd:6 217 of 1024 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 reusable connection: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 posix_memalign: 0000585C9EAD9500:4096 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http process request line -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http request line: "PUT /mirror HTTP/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http uri: "/mirror" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http args: "" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http exten: "" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 posix_memalign: 0000585C9EACF870:4096 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http process request header line -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http header: "Host: localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http header: "User-Agent: curl/8.15.0" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http header: "Accept: */*" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http header: "Content-Type: application/json" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http header: "Content-Length: 81" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http header done -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 event timer del: 6: 586295679 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 generic phase: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 rewrite phase: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 test location: "/health" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 test location: "/report" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 test location: "/mirror" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 using configuration "=/mirror" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http cl:81 max:104857600 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 rewrite phase: 3 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "PUT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script regex: "^(PUT)$" -2025/09/08 07:55:35 [notice] 1532013#1532013: *7 "^(PUT)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /mirror HTTP/1.1", host: "localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script if -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script if: false -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 post rewrite phase: 4 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 generic phase: 5 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 generic phase: 6 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 generic phase: 7 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 access phase: 8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 access phase: 9 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 access phase: 10 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 post access phase: 11 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 generic phase: 12 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 generic phase: 13 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http client request body preread 81 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http request body content length filter -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http body new buf t:1 f:0 0000585C9EABA128, pos 0000585C9EABA128, size: 81 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http init upstream, client timer: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "QUERY_STRING" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "QUERY_STRING: " -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "REQUEST_METHOD" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "PUT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "CONTENT_TYPE" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "application/json" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "CONTENT_TYPE: application/json" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "CONTENT_LENGTH" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "81" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "CONTENT_LENGTH: 81" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "SCRIPT_NAME" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "/mirror" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "SCRIPT_NAME: /mirror" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "REQUEST_URI" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "/mirror" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "REQUEST_URI: /mirror" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "DOCUMENT_URI" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "/mirror" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "DOCUMENT_URI: /mirror" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "DOCUMENT_ROOT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "./blobs" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "SERVER_PROTOCOL" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "HTTP/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "REQUEST_SCHEME" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "http" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "GATEWAY_INTERFACE" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "CGI/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "SERVER_SOFTWARE" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "nginx/" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "1.18.0" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "REMOTE_ADDR" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "127.0.0.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "REMOTE_PORT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "46180" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "REMOTE_PORT: 46180" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "SERVER_ADDR" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "127.0.0.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "SERVER_PORT" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "SERVER_NAME" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "localhost" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "REDIRECT_STATUS" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "200" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "SCRIPT_FILENAME" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script var: "./blobs" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http script copy: "/ginxsom.fcgi" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "HTTP_CONTENT_TYPE: application/json" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 fastcgi param: "HTTP_CONTENT_LENGTH: 81" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http cleanup add: 0000585C9EAD06A0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 get rr peer, try: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 stream socket 10 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 epoll add connection: fd:10 ev:80002005 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 connected -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http upstream connect: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 posix_memalign: 0000585C9EAA0F20:128 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http upstream send request -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http upstream send request body -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 chain writer buf fl:0 s:592 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 chain writer buf fl:0 s:81 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 chain writer buf fl:0 s:15 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 chain writer in: 0000585C9EAD0710 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 writev: 688 of 688 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 chain writer out: 0000000000000000 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 event timer add: 10: 60000:586295679 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http finalize request: -4, "/mirror?" a:1, c:2 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http request count:2 blk:0 -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 60000 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:6 ev:0004 d:0000789CF79631E1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http run request: "/mirror?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http upstream check client, write event:1, "/mirror" -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:10 ev:0004 d:0000789CF79632C9 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http upstream request: "/mirror?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http upstream dummy handler -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 60000 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:10 ev:0004 d:0000789CF79632C9 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http upstream request: "/mirror?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http upstream dummy handler -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 60000 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:10 ev:2005 d:0000789CF79632C9 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http upstream request: "/mirror?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http upstream process header -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 malloc: 0000585C9EAC1140:4096 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 posix_memalign: 0000585C9EAC2150:4096 @16 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 recv: eof:1, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 recv: fd:10 768 of 4096 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 07 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 8C -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 04 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record length: 140 -2025/09/08 07:55:35 [error] 1532013#1532013: *7 FastCGI sent in stderr: "LOG: [2025-09-08 07:55:35] PUT /mirror - Auth: pending - Status: 0 -LOG: [2025-09-08 07:55:35] PUT /mirror - Auth: anonymous - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /mirror HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 07 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record length: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 06 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 02 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 3D -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 03 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record length: 573 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi parser: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi header: "Status: 200 OK" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi parser: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi header: "Content-Type: application/json" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi parser: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi header done -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 11:55:35 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 write new buf t:1 f:0 0000585C9EAC22F0, pos 0000585C9EAC22F0, size: 260 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http write filter: l:0 f:0 s:260 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http cacheable: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http upstream process upstream -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 pipe read upstream: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 pipe preread: 550 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 readv: eof:1, avail:0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 readv: 1, last:3328 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 pipe recv chain: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 pipe buf free s:0 t:1 f:0 0000585C9EAC1140, pos 0000585C9EAC121A, size: 550 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 pipe length: -1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 input buf #0 0000585C9EAC121A -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 06 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record length: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi closed stdout -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 03 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 01 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 08 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record byte: 00 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi record length: 8 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http fastcgi sent end request -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 input buf 0000585C9EAC121A 523 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 pipe write downstream: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 pipe write downstream flush in -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http output filter "/mirror?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http copy filter: "/mirror?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http postpone filter "/mirror?" 0000585C9EAD06E0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http chunk: 523 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 write old buf t:1 f:0 0000585C9EAC22F0, pos 0000585C9EAC22F0, size: 260 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 write new buf t:1 f:0 0000585C9EAD0850, pos 0000585C9EAD0850, size: 5 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 write new buf t:1 f:0 0000585C9EAC1140, pos 0000585C9EAC121A, size: 523 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 write new buf t:0 f:0 0000000000000000, pos 0000585C878292E8, size: 2 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http write filter: l:0 f:0 s:790 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http copy filter: 0 "/mirror?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 pipe write downstream done -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 event timer del: 10: 586295679 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 event timer add: 10: 60000:586296324 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http upstream exit: 0000000000000000 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 finalize http upstream request: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 finalize http fastcgi request -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 free rr peer 1 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 close http upstream connection: 10 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 free: 0000585C9EAA0F20, unused: 48 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 event timer del: 10: 586296324 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 reusable connection: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http upstream temp fd: -1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http output filter "/mirror?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http copy filter: "/mirror?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http postpone filter "/mirror?" 00007FFCD9734E40 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http chunk: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 write old buf t:1 f:0 0000585C9EAC22F0, pos 0000585C9EAC22F0, size: 260 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 write old buf t:1 f:0 0000585C9EAD0850, pos 0000585C9EAD0850, size: 5 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 write old buf t:1 f:0 0000585C9EAC1140, pos 0000585C9EAC121A, size: 523 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 write old buf t:0 f:0 0000000000000000, pos 0000585C878292E8, size: 2 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 write new buf t:0 f:0 0000000000000000, pos 0000585C878292E5, size: 5 file: 0, size: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http write filter: l:1 f:0 s:795 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http write filter limit 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 writev: 795 of 795 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http write filter 0000000000000000 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http copy filter: 0 "/mirror?" -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http finalize request: 0, "/mirror?" a:1, c:1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 set http keepalive handler -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http close request -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http log handler -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 free: 0000585C9EAC1140 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 free: 0000585C9EAD9500, unused: 3 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 free: 0000585C9EACF870, unused: 14 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 free: 0000585C9EAC2150, unused: 2394 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 free: 0000585C9EABA0A0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 hc free: 0000000000000000 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 hc busy: 0000000000000000 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 tcp_nodelay -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 reusable connection: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 event timer add: 6: 65000:586301324 -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 645 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: 65000 -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll: fd:6 ev:2005 d:0000789CF79631E1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 http keepalive handler -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 malloc: 0000585C9EABA0A0:1024 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 recv: eof:1, avail:-1 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 recv: fd:6 0 of 1024 -2025/09/08 07:55:35 [info] 1532013#1532013: *7 client 127.0.0.1 closed keepalive connection -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 close http connection: 6 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 event timer del: 6: 586301324 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 reusable connection: 0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 free: 0000585C9EABA0A0 -2025/09/08 07:55:35 [debug] 1532013#1532013: *7 free: 0000585C9EAB7840, unused: 120 -2025/09/08 07:55:35 [debug] 1532013#1532013: timer delta: 1 -2025/09/08 07:55:35 [debug] 1532013#1532013: worker cycle -2025/09/08 07:55:35 [debug] 1532013#1532013: epoll timer: -1 -2025/09/08 09:28:06 [notice] 1532012#1532012: signal 15 (SIGTERM) received from 1550017, exiting -2025/09/08 09:28:06 [debug] 1532012#1532012: wake up, sigio 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: child: 0 1532013 e:0 t:0 d:0 r:1 j:0 -2025/09/08 09:28:06 [debug] 1532012#1532012: termination cycle: 50 -2025/09/08 09:28:06 [debug] 1532012#1532012: sigsuspend -2025/09/08 09:28:06 [debug] 1532013#1532013: epoll: fd:7 ev:0001 d:0000789CF79630F8 -2025/09/08 09:28:06 [debug] 1532013#1532013: channel handler -2025/09/08 09:28:06 [debug] 1532013#1532013: channel: 32 -2025/09/08 09:28:06 [debug] 1532013#1532013: channel command: 4 -2025/09/08 09:28:06 [debug] 1532013#1532013: channel: -2 -2025/09/08 09:28:06 [debug] 1532013#1532013: timer delta: 5550274 -2025/09/08 09:28:06 [notice] 1532013#1532013: exiting -2025/09/08 09:28:06 [debug] 1532013#1532013: flush files -2025/09/08 09:28:06 [debug] 1532013#1532013: run cleanup: 0000585C9EB2C4E0 -2025/09/08 09:28:06 [debug] 1532013#1532013: run cleanup: 0000585C9EB14EC0 -2025/09/08 09:28:06 [debug] 1532013#1532013: cleanup resolver -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EB2D940 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EB18720 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EADB620 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EADA510 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EAD44E0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EAD3420 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EAD2360 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EAD12A0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EAC6160 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EABD130, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EACA050, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EAD54F0, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EADC630, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EAE0640, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EAE4650, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EAE8660, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EAEC670, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EAF0680, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EAF4690, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EAF86A0, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EAFC6B0, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EB006C0, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EB046D0, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EB086E0, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EB0C6F0, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EB10700, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EB14710, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EB198F0, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EB1D900, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EB21910, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EB25920, unused: 0 -2025/09/08 09:28:06 [debug] 1532013#1532013: free: 0000585C9EB29930, unused: 5176 -2025/09/08 09:28:06 [notice] 1532013#1532013: exit -2025/09/08 09:28:06 [notice] 1532012#1532012: signal 17 (SIGCHLD) received from 1532013 -2025/09/08 09:28:06 [notice] 1532012#1532012: worker process 1532013 exited with code 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: shmtx forced unlock -2025/09/08 09:28:06 [debug] 1532012#1532012: wake up, sigio 3 -2025/09/08 09:28:06 [debug] 1532012#1532012: reap children -2025/09/08 09:28:06 [debug] 1532012#1532012: child: 0 1532013 e:1 t:1 d:0 r:1 j:0 -2025/09/08 09:28:06 [notice] 1532012#1532012: exit -2025/09/08 09:28:06 [debug] 1532012#1532012: close listening 0.0.0.0:9001 #5 -2025/09/08 09:28:06 [debug] 1532012#1532012: run cleanup: 0000585C9EB14EC0 -2025/09/08 09:28:06 [debug] 1532012#1532012: cleanup resolver -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EB2D940 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EB18720 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EADB620 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EADA510 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EAD44E0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EAD3420 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EAD2360 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EAD12A0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EAC6160 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EABD130, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EACA050, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EAD54F0, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EADC630, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EAE0640, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EAE4650, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EAE8660, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EAEC670, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EAF0680, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EAF4690, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EAF86A0, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EAFC6B0, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EB006C0, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EB046D0, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EB086E0, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EB0C6F0, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EB10700, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EB14710, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EB198F0, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EB1D900, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EB21910, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EB25920, unused: 0 -2025/09/08 09:28:06 [debug] 1532012#1532012: free: 0000585C9EB29930, unused: 5207 -2025/09/08 09:28:09 [debug] 1550047#1550047: bind() 0.0.0.0:9001 #5 -2025/09/08 09:28:09 [debug] 1550047#1550047: counter: 000071BBD758E080, 1 -2025/09/08 09:28:09 [debug] 1550048#1550048: bind() 0.0.0.0:9001 #5 -2025/09/08 09:28:09 [notice] 1550048#1550048: using the "epoll" event method -2025/09/08 09:28:09 [debug] 1550048#1550048: counter: 00007C4A593DE080, 1 -2025/09/08 09:28:09 [notice] 1550048#1550048: nginx/1.18.0 (Ubuntu) -2025/09/08 09:28:09 [notice] 1550048#1550048: OS: Linux 6.12.10-76061203-generic -2025/09/08 09:28:09 [notice] 1550048#1550048: getrlimit(RLIMIT_NOFILE): 1048576:1048576 -2025/09/08 09:28:09 [debug] 1550049#1550048: write: 6, 00007FFDC9FFFA10, 8, 0 -2025/09/08 09:28:09 [debug] 1550049#1550049: setproctitle: "nginx: master process nginx -p . -c config/local-nginx.conf" -2025/09/08 09:28:09 [notice] 1550049#1550049: start worker processes -2025/09/08 09:28:09 [debug] 1550049#1550049: channel 6:7 -2025/09/08 09:28:09 [notice] 1550049#1550049: start worker process 1550050 -2025/09/08 09:28:09 [debug] 1550049#1550049: sigsuspend -2025/09/08 09:28:09 [debug] 1550050#1550050: add cleanup: 00006397415C44E0 -2025/09/08 09:28:09 [debug] 1550050#1550050: malloc: 0000639741550BD0:8 -2025/09/08 09:28:09 [debug] 1550050#1550050: notify eventfd: 9 -2025/09/08 09:28:09 [debug] 1550050#1550050: testing the EPOLLRDHUP flag: success -2025/09/08 09:28:09 [debug] 1550050#1550050: malloc: 0000639741566060:6144 -2025/09/08 09:28:09 [debug] 1550050#1550050: malloc: 00007C4A591D6010:237568 -2025/09/08 09:28:09 [debug] 1550050#1550050: malloc: 00006397415C7210:98304 -2025/09/08 09:28:09 [debug] 1550050#1550050: malloc: 00006397415DF220:98304 -2025/09/08 09:28:09 [debug] 1550050#1550050: epoll add event: fd:5 op:1 ev:00002001 -2025/09/08 09:28:09 [debug] 1550050#1550050: epoll add event: fd:7 op:1 ev:00002001 -2025/09/08 09:28:09 [debug] 1550050#1550050: setproctitle: "nginx: worker process" -2025/09/08 09:28:09 [debug] 1550050#1550050: worker cycle -2025/09/08 09:28:09 [debug] 1550050#1550050: epoll timer: -1 -2025/09/08 09:28:45 [debug] 1550050#1550050: epoll: fd:5 ev:0001 d:00007C4A591D6010 -2025/09/08 09:28:45 [debug] 1550050#1550050: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: posix_memalign: 000063974154F840:512 @16 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 accept: 127.0.0.1:54440 fd:6 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 event timer add: 6: 60000:591886222 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 reusable connection: 1 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 09:28:45 [debug] 1550050#1550050: timer delta: 36424 -2025/09/08 09:28:45 [debug] 1550050#1550050: worker cycle -2025/09/08 09:28:45 [debug] 1550050#1550050: epoll timer: 60000 -2025/09/08 09:28:45 [debug] 1550050#1550050: epoll: fd:6 ev:0001 d:00007C4A591D61E0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http wait request handler -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 malloc: 00006397415520A0:1024 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 recv: eof:0, avail:-1 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 recv: fd:6 154 of 1024 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 reusable connection: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 posix_memalign: 0000639741571500:4096 @16 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http process request line -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http request line: "PUT /upload HTTP/1.1" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http uri: "/upload" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http args: "" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http exten: "" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 posix_memalign: 0000639741567870:4096 @16 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http process request header line -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http header: "Host: localhost:9001" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http header: "User-Agent: curl/8.15.0" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http header: "Accept: */*" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http header: "Content-Type: text/plain" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http header: "Content-Length: 24" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http header done -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 event timer del: 6: 591886222 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 generic phase: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 rewrite phase: 1 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 test location: "/health" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 test location: "/report" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 test location: "/upload" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 using configuration "=/upload" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http cl:24 max:104857600 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 rewrite phase: 3 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "PUT" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script regex: "^(PUT|HEAD)$" -2025/09/08 09:28:45 [notice] 1550050#1550050: *1 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script if -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script if: false -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 post rewrite phase: 4 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 generic phase: 5 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 generic phase: 6 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 generic phase: 7 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 access phase: 8 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 access phase: 9 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 access phase: 10 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 post access phase: 11 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 generic phase: 12 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 generic phase: 13 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http client request body preread 24 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http request body content length filter -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http body new buf t:1 f:0 0000639741552122, pos 0000639741552122, size: 24 file: 0, size: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http init upstream, client timer: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "QUERY_STRING" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "QUERY_STRING: " -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "REQUEST_METHOD" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "PUT" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "CONTENT_TYPE" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "text/plain" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "CONTENT_LENGTH" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "24" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "CONTENT_LENGTH: 24" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "SCRIPT_NAME" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "/upload" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "REQUEST_URI" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "/upload" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "REQUEST_URI: /upload" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "DOCUMENT_URI" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "/upload" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "DOCUMENT_ROOT" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "./blobs" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "SERVER_PROTOCOL" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "HTTP/1.1" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "REQUEST_SCHEME" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "http" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "GATEWAY_INTERFACE" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "CGI/1.1" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "SERVER_SOFTWARE" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "nginx/" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "1.18.0" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "REMOTE_ADDR" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "127.0.0.1" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "REMOTE_PORT" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "54440" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "REMOTE_PORT: 54440" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "SERVER_ADDR" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "127.0.0.1" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "SERVER_PORT" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "9001" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "SERVER_NAME" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "localhost" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "REDIRECT_STATUS" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "200" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "SCRIPT_FILENAME" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script var: "./blobs" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http script copy: "/ginxsom.fcgi" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 fastcgi param: "HTTP_CONTENT_LENGTH: 24" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http cleanup add: 0000639741568690 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 get rr peer, try: 1 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 stream socket 10 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 epoll add connection: fd:10 ev:80002005 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #2 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 connected -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http upstream connect: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 posix_memalign: 0000639741538F20:128 @16 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http upstream send request -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http upstream send request body -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 chain writer buf fl:0 s:584 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 chain writer buf fl:0 s:24 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 chain writer buf fl:0 s:8 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 chain writer in: 0000639741568700 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 writev: 616 of 616 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 chain writer out: 0000000000000000 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 event timer add: 10: 60000:591886223 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http request count:2 blk:0 -2025/09/08 09:28:45 [debug] 1550050#1550050: timer delta: 1 -2025/09/08 09:28:45 [debug] 1550050#1550050: worker cycle -2025/09/08 09:28:45 [debug] 1550050#1550050: epoll timer: 60000 -2025/09/08 09:28:45 [debug] 1550050#1550050: epoll: fd:6 ev:0004 d:00007C4A591D61E0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http run request: "/upload?" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http upstream check client, write event:1, "/upload" -2025/09/08 09:28:45 [debug] 1550050#1550050: epoll: fd:10 ev:0004 d:00007C4A591D62C8 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http upstream request: "/upload?" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http upstream dummy handler -2025/09/08 09:28:45 [debug] 1550050#1550050: timer delta: 1 -2025/09/08 09:28:45 [debug] 1550050#1550050: worker cycle -2025/09/08 09:28:45 [debug] 1550050#1550050: epoll timer: 59999 -2025/09/08 09:28:45 [debug] 1550050#1550050: epoll: fd:10 ev:0005 d:00007C4A591D62C8 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http upstream request: "/upload?" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http upstream process header -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 malloc: 0000639741559140:4096 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 posix_memalign: 000063974155A150:4096 @16 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 recv: eof:0, avail:-1 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 recv: fd:10 152 of 4096 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 01 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 07 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 01 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 8A -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 06 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record length: 138 -2025/09/08 09:28:45 [error] 1550050#1550050: *1 FastCGI sent in stderr: "LOG: [2025-09-08 09:28:45] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-08 09:28:45] PUT /upload - Auth: anonymous - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 recv: eof:0, avail:0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http upstream request: "/upload?" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http upstream dummy handler -2025/09/08 09:28:45 [debug] 1550050#1550050: timer delta: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: worker cycle -2025/09/08 09:28:45 [debug] 1550050#1550050: epoll timer: 59999 -2025/09/08 09:28:45 [debug] 1550050#1550050: epoll: fd:10 ev:2005 d:00007C4A591D62C8 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http upstream request: "/upload?" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http upstream process header -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 recv: eof:1, avail:-1 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 recv: fd:10 416 of 3944 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 01 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 07 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 01 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 82 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 06 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record length: 130 -2025/09/08 09:28:45 [error] 1550050#1550050: *1 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: NO -LOG: [2025-09-08 09:28:45] PUT /upload - Auth: missing_auth - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 01 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 07 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 01 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record length: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 01 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 06 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 01 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: E5 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 03 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record length: 229 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi parser: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi header: "Status: 401 Unauthorized" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi parser: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi header: "Content-Type: application/json" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi parser: 1 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi header done -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 13:28:45 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 write new buf t:1 f:0 000063974155A2F0, pos 000063974155A2F0, size: 181 file: 0, size: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http write filter: l:0 f:0 s:181 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http cacheable: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http upstream process upstream -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 pipe read upstream: 1 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 pipe preread: 196 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 readv: eof:1, avail:0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 readv: 1, last:3528 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 pipe recv chain: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 pipe buf free s:0 t:1 f:0 0000639741559140, pos 00006397415592B4, size: 196 file: 0, size: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 pipe length: -1 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 input buf #0 00006397415592B4 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 01 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 06 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 01 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record length: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi closed stdout -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 01 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 03 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 01 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 08 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record byte: 00 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi record length: 8 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http fastcgi sent end request -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 input buf 00006397415592B4 169 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 pipe write downstream: 1 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 pipe write downstream flush in -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http output filter "/upload?" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http copy filter: "/upload?" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http postpone filter "/upload?" 00006397415686D0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http chunk: 169 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 write old buf t:1 f:0 000063974155A2F0, pos 000063974155A2F0, size: 181 file: 0, size: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 write new buf t:1 f:0 0000639741568848, pos 0000639741568848, size: 4 file: 0, size: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 write new buf t:1 f:0 0000639741559140, pos 00006397415592B4, size: 169 file: 0, size: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 write new buf t:0 f:0 0000000000000000, pos 00006397179382E8, size: 2 file: 0, size: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http write filter: l:0 f:0 s:356 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http copy filter: 0 "/upload?" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 pipe write downstream done -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 event timer: 10, old: 591886223, new: 591886224 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http upstream exit: 0000000000000000 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 finalize http upstream request: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 finalize http fastcgi request -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 free rr peer 1 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 close http upstream connection: 10 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 free: 0000639741538F20, unused: 48 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 event timer del: 10: 591886223 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 reusable connection: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http upstream temp fd: -1 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http output filter "/upload?" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http copy filter: "/upload?" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http postpone filter "/upload?" 00007FFDC9FFF650 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http chunk: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 write old buf t:1 f:0 000063974155A2F0, pos 000063974155A2F0, size: 181 file: 0, size: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 write old buf t:1 f:0 0000639741568848, pos 0000639741568848, size: 4 file: 0, size: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 write old buf t:1 f:0 0000639741559140, pos 00006397415592B4, size: 169 file: 0, size: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 write old buf t:0 f:0 0000000000000000, pos 00006397179382E8, size: 2 file: 0, size: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 write new buf t:0 f:0 0000000000000000, pos 00006397179382E5, size: 5 file: 0, size: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http write filter: l:1 f:0 s:361 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http write filter limit 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 writev: 361 of 361 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http write filter 0000000000000000 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http copy filter: 0 "/upload?" -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 set http keepalive handler -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http close request -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http log handler -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 free: 0000639741559140 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 free: 0000639741571500, unused: 3 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 free: 0000639741567870, unused: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 free: 000063974155A150, unused: 2490 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 free: 00006397415520A0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 hc free: 0000000000000000 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 hc busy: 0000000000000000 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 tcp_nodelay -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 reusable connection: 1 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 event timer add: 6: 65000:591891224 -2025/09/08 09:28:45 [debug] 1550050#1550050: timer delta: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: worker cycle -2025/09/08 09:28:45 [debug] 1550050#1550050: epoll timer: 65000 -2025/09/08 09:28:45 [debug] 1550050#1550050: epoll: fd:6 ev:2005 d:00007C4A591D61E0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 http keepalive handler -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 malloc: 00006397415520A0:1024 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 recv: eof:1, avail:-1 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 recv: fd:6 0 of 1024 -2025/09/08 09:28:45 [info] 1550050#1550050: *1 client 127.0.0.1 closed keepalive connection -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 close http connection: 6 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 event timer del: 6: 591891224 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 reusable connection: 0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 free: 00006397415520A0 -2025/09/08 09:28:45 [debug] 1550050#1550050: *1 free: 000063974154F840, unused: 120 -2025/09/08 09:28:45 [debug] 1550050#1550050: timer delta: 1 -2025/09/08 09:28:45 [debug] 1550050#1550050: worker cycle -2025/09/08 09:28:45 [debug] 1550050#1550050: epoll timer: -1 -2025/09/08 09:29:22 [debug] 1550050#1550050: epoll: fd:5 ev:0001 d:00007C4A591D6010 -2025/09/08 09:29:22 [debug] 1550050#1550050: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: posix_memalign: 000063974154F840:512 @16 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 accept: 127.0.0.1:53158 fd:6 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 event timer add: 6: 60000:591922659 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 reusable connection: 1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 09:29:22 [debug] 1550050#1550050: timer delta: 36434 -2025/09/08 09:29:22 [debug] 1550050#1550050: worker cycle -2025/09/08 09:29:22 [debug] 1550050#1550050: epoll timer: 60000 -2025/09/08 09:29:22 [debug] 1550050#1550050: epoll: fd:6 ev:0001 d:00007C4A591D61E1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http wait request handler -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 malloc: 00006397415520A0:1024 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 recv: eof:0, avail:-1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 recv: fd:6 154 of 1024 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 reusable connection: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 posix_memalign: 0000639741571500:4096 @16 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http process request line -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http request line: "PUT /upload HTTP/1.1" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http uri: "/upload" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http args: "" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http exten: "" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 posix_memalign: 0000639741567870:4096 @16 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http process request header line -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http header: "Host: localhost:9001" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http header: "User-Agent: curl/8.15.0" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http header: "Accept: */*" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http header: "Content-Type: text/plain" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http header: "Content-Length: 24" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http header done -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 event timer del: 6: 591922659 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 generic phase: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 rewrite phase: 1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 test location: "/health" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 test location: "/report" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 test location: "/upload" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 using configuration "=/upload" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http cl:24 max:104857600 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 rewrite phase: 3 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "PUT" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script regex: "^(PUT|HEAD)$" -2025/09/08 09:29:22 [notice] 1550050#1550050: *3 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script if -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script if: false -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 post rewrite phase: 4 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 generic phase: 5 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 generic phase: 6 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 generic phase: 7 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 access phase: 8 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 access phase: 9 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 access phase: 10 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 post access phase: 11 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 generic phase: 12 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 generic phase: 13 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http client request body preread 24 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http request body content length filter -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http body new buf t:1 f:0 0000639741552122, pos 0000639741552122, size: 24 file: 0, size: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http init upstream, client timer: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "QUERY_STRING" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "QUERY_STRING: " -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "REQUEST_METHOD" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "PUT" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "CONTENT_TYPE" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "text/plain" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "CONTENT_LENGTH" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "24" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "CONTENT_LENGTH: 24" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "SCRIPT_NAME" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "/upload" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "REQUEST_URI" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "/upload" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "REQUEST_URI: /upload" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "DOCUMENT_URI" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "/upload" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "DOCUMENT_ROOT" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "./blobs" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "SERVER_PROTOCOL" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "HTTP/1.1" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "REQUEST_SCHEME" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "http" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "GATEWAY_INTERFACE" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "CGI/1.1" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "SERVER_SOFTWARE" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "nginx/" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "1.18.0" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "REMOTE_ADDR" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "127.0.0.1" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "REMOTE_PORT" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "53158" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "REMOTE_PORT: 53158" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "SERVER_ADDR" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "127.0.0.1" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "SERVER_PORT" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "9001" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "SERVER_NAME" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "localhost" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "REDIRECT_STATUS" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "200" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "SCRIPT_FILENAME" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script var: "./blobs" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http script copy: "/ginxsom.fcgi" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 fastcgi param: "HTTP_CONTENT_LENGTH: 24" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http cleanup add: 0000639741568690 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 get rr peer, try: 1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 stream socket 10 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 epoll add connection: fd:10 ev:80002005 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #4 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 connected -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http upstream connect: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 posix_memalign: 0000639741538F20:128 @16 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http upstream send request -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http upstream send request body -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 chain writer buf fl:0 s:584 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 chain writer buf fl:0 s:24 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 chain writer buf fl:0 s:8 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 chain writer in: 0000639741568700 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 writev: 616 of 616 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 chain writer out: 0000000000000000 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 event timer add: 10: 60000:591922659 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http request count:2 blk:0 -2025/09/08 09:29:22 [debug] 1550050#1550050: timer delta: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: worker cycle -2025/09/08 09:29:22 [debug] 1550050#1550050: epoll timer: 60000 -2025/09/08 09:29:22 [debug] 1550050#1550050: epoll: fd:6 ev:0004 d:00007C4A591D61E1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http run request: "/upload?" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http upstream check client, write event:1, "/upload" -2025/09/08 09:29:22 [debug] 1550050#1550050: epoll: fd:10 ev:0004 d:00007C4A591D62C9 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http upstream request: "/upload?" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http upstream dummy handler -2025/09/08 09:29:22 [debug] 1550050#1550050: timer delta: 1 -2025/09/08 09:29:22 [debug] 1550050#1550050: worker cycle -2025/09/08 09:29:22 [debug] 1550050#1550050: epoll timer: 59999 -2025/09/08 09:29:22 [debug] 1550050#1550050: epoll: fd:10 ev:0005 d:00007C4A591D62C9 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http upstream request: "/upload?" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http upstream process header -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 malloc: 0000639741559140:4096 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 posix_memalign: 000063974155A150:4096 @16 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 recv: eof:0, avail:-1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 recv: fd:10 152 of 4096 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 01 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 07 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 01 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 8A -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 06 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record length: 138 -2025/09/08 09:29:22 [error] 1550050#1550050: *3 FastCGI sent in stderr: "LOG: [2025-09-08 09:29:22] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-08 09:29:22] PUT /upload - Auth: anonymous - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 recv: eof:0, avail:0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http upstream request: "/upload?" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http upstream dummy handler -2025/09/08 09:29:22 [debug] 1550050#1550050: timer delta: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: worker cycle -2025/09/08 09:29:22 [debug] 1550050#1550050: epoll timer: 59999 -2025/09/08 09:29:22 [debug] 1550050#1550050: epoll: fd:10 ev:2005 d:00007C4A591D62C9 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http upstream request: "/upload?" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http upstream process header -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 recv: eof:1, avail:-1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 recv: fd:10 416 of 3944 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 01 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 07 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 01 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 82 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 06 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record length: 130 -2025/09/08 09:29:22 [error] 1550050#1550050: *3 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 1, auth_header present: NO -LOG: [2025-09-08 09:29:22] PUT /upload - Auth: missing_auth - Status: 401" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 01 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 07 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 01 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record length: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 01 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 06 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 01 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: E5 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 03 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record length: 229 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi parser: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi header: "Status: 401 Unauthorized" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi parser: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi header: "Content-Type: application/json" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi parser: 1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi header done -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 HTTP/1.1 401 Unauthorized -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 13:29:22 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive - -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 write new buf t:1 f:0 000063974155A2F0, pos 000063974155A2F0, size: 181 file: 0, size: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http write filter: l:0 f:0 s:181 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http cacheable: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http upstream process upstream -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 pipe read upstream: 1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 pipe preread: 196 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 readv: eof:1, avail:0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 readv: 1, last:3528 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 pipe recv chain: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 pipe buf free s:0 t:1 f:0 0000639741559140, pos 00006397415592B4, size: 196 file: 0, size: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 pipe length: -1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 input buf #0 00006397415592B4 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 01 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 06 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 01 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record length: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi closed stdout -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 01 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 03 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 01 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 08 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record byte: 00 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi record length: 8 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http fastcgi sent end request -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 input buf 00006397415592B4 169 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 pipe write downstream: 1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 pipe write downstream flush in -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http output filter "/upload?" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http copy filter: "/upload?" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http postpone filter "/upload?" 00006397415686D0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http chunk: 169 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 write old buf t:1 f:0 000063974155A2F0, pos 000063974155A2F0, size: 181 file: 0, size: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 write new buf t:1 f:0 0000639741568848, pos 0000639741568848, size: 4 file: 0, size: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 write new buf t:1 f:0 0000639741559140, pos 00006397415592B4, size: 169 file: 0, size: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 write new buf t:0 f:0 0000000000000000, pos 00006397179382E8, size: 2 file: 0, size: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http write filter: l:0 f:0 s:356 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http copy filter: 0 "/upload?" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 pipe write downstream done -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 event timer: 10, old: 591922659, new: 591922660 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http upstream exit: 0000000000000000 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 finalize http upstream request: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 finalize http fastcgi request -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 free rr peer 1 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 close http upstream connection: 10 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 free: 0000639741538F20, unused: 48 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 event timer del: 10: 591922659 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 reusable connection: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http upstream temp fd: -1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http output filter "/upload?" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http copy filter: "/upload?" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http postpone filter "/upload?" 00007FFDC9FFF650 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http chunk: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 write old buf t:1 f:0 000063974155A2F0, pos 000063974155A2F0, size: 181 file: 0, size: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 write old buf t:1 f:0 0000639741568848, pos 0000639741568848, size: 4 file: 0, size: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 write old buf t:1 f:0 0000639741559140, pos 00006397415592B4, size: 169 file: 0, size: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 write old buf t:0 f:0 0000000000000000, pos 00006397179382E8, size: 2 file: 0, size: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 write new buf t:0 f:0 0000000000000000, pos 00006397179382E5, size: 5 file: 0, size: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http write filter: l:1 f:0 s:361 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http write filter limit 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 writev: 361 of 361 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http write filter 0000000000000000 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http copy filter: 0 "/upload?" -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 set http keepalive handler -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http close request -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http log handler -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 free: 0000639741559140 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 free: 0000639741571500, unused: 3 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 free: 0000639741567870, unused: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 free: 000063974155A150, unused: 2490 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 free: 00006397415520A0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 hc free: 0000000000000000 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 hc busy: 0000000000000000 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 tcp_nodelay -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 reusable connection: 1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 event timer add: 6: 65000:591927660 -2025/09/08 09:29:22 [debug] 1550050#1550050: timer delta: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: worker cycle -2025/09/08 09:29:22 [debug] 1550050#1550050: epoll timer: 65000 -2025/09/08 09:29:22 [debug] 1550050#1550050: epoll: fd:6 ev:2005 d:00007C4A591D61E1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 http keepalive handler -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 malloc: 00006397415520A0:1024 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 recv: eof:1, avail:-1 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 recv: fd:6 0 of 1024 -2025/09/08 09:29:22 [info] 1550050#1550050: *3 client 127.0.0.1 closed keepalive connection -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 close http connection: 6 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 event timer del: 6: 591927660 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 reusable connection: 0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 free: 00006397415520A0 -2025/09/08 09:29:22 [debug] 1550050#1550050: *3 free: 000063974154F840, unused: 120 -2025/09/08 09:29:22 [debug] 1550050#1550050: timer delta: 1 -2025/09/08 09:29:22 [debug] 1550050#1550050: worker cycle -2025/09/08 09:29:22 [debug] 1550050#1550050: epoll timer: -1 -2025/09/08 09:29:52 [notice] 1550049#1550049: signal 15 (SIGTERM) received from 1550269, exiting -2025/09/08 09:29:52 [debug] 1550049#1550049: wake up, sigio 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: child: 0 1550050 e:0 t:0 d:0 r:1 j:0 -2025/09/08 09:29:52 [debug] 1550049#1550049: termination cycle: 50 -2025/09/08 09:29:52 [debug] 1550049#1550049: sigsuspend -2025/09/08 09:29:52 [debug] 1550050#1550050: epoll: fd:7 ev:0001 d:00007C4A591D60F8 -2025/09/08 09:29:52 [debug] 1550050#1550050: channel handler -2025/09/08 09:29:52 [debug] 1550050#1550050: channel: 32 -2025/09/08 09:29:52 [debug] 1550050#1550050: channel command: 4 -2025/09/08 09:29:52 [debug] 1550050#1550050: channel: -2 -2025/09/08 09:29:52 [debug] 1550050#1550050: timer delta: 30084 -2025/09/08 09:29:52 [notice] 1550050#1550050: exiting -2025/09/08 09:29:52 [debug] 1550050#1550050: flush files -2025/09/08 09:29:52 [debug] 1550050#1550050: run cleanup: 00006397415C44E0 -2025/09/08 09:29:52 [debug] 1550050#1550050: run cleanup: 00006397415ACEC0 -2025/09/08 09:29:52 [debug] 1550050#1550050: cleanup resolver -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 00006397415C5940 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 00006397415B0720 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 0000639741573620 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 0000639741572510 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 000063974156C4E0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 000063974156B420 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 000063974156A360 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 00006397415692A0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 000063974155E160 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 0000639741555130, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 0000639741562050, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 000063974156D4F0, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 0000639741574630, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 0000639741578640, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 000063974157C650, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 0000639741580660, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 0000639741584670, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 0000639741588680, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 000063974158C690, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 00006397415906A0, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 00006397415946B0, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 00006397415986C0, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 000063974159C6D0, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 00006397415A06E0, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 00006397415A46F0, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 00006397415A8700, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 00006397415AC710, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 00006397415B18F0, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 00006397415B5900, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 00006397415B9910, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 00006397415BD920, unused: 0 -2025/09/08 09:29:52 [debug] 1550050#1550050: free: 00006397415C1930, unused: 5176 -2025/09/08 09:29:52 [notice] 1550050#1550050: exit -2025/09/08 09:29:52 [notice] 1550049#1550049: signal 17 (SIGCHLD) received from 1550050 -2025/09/08 09:29:52 [notice] 1550049#1550049: worker process 1550050 exited with code 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: shmtx forced unlock -2025/09/08 09:29:52 [debug] 1550049#1550049: wake up, sigio 3 -2025/09/08 09:29:52 [debug] 1550049#1550049: reap children -2025/09/08 09:29:52 [debug] 1550049#1550049: child: 0 1550050 e:1 t:1 d:0 r:1 j:0 -2025/09/08 09:29:52 [notice] 1550049#1550049: exit -2025/09/08 09:29:52 [debug] 1550049#1550049: close listening 0.0.0.0:9001 #5 -2025/09/08 09:29:52 [debug] 1550049#1550049: run cleanup: 00006397415ACEC0 -2025/09/08 09:29:52 [debug] 1550049#1550049: cleanup resolver -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 00006397415C5940 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 00006397415B0720 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 0000639741573620 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 0000639741572510 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 000063974156C4E0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 000063974156B420 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 000063974156A360 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 00006397415692A0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 000063974155E160 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 0000639741555130, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 0000639741562050, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 000063974156D4F0, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 0000639741574630, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 0000639741578640, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 000063974157C650, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 0000639741580660, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 0000639741584670, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 0000639741588680, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 000063974158C690, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 00006397415906A0, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 00006397415946B0, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 00006397415986C0, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 000063974159C6D0, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 00006397415A06E0, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 00006397415A46F0, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 00006397415A8700, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 00006397415AC710, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 00006397415B18F0, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 00006397415B5900, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 00006397415B9910, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 00006397415BD920, unused: 0 -2025/09/08 09:29:52 [debug] 1550049#1550049: free: 00006397415C1930, unused: 5207 -2025/09/08 09:29:55 [debug] 1550303#1550303: bind() 0.0.0.0:9001 #5 -2025/09/08 09:29:55 [debug] 1550303#1550303: counter: 00007D463047D080, 1 -2025/09/08 09:29:55 [debug] 1550304#1550304: bind() 0.0.0.0:9001 #5 -2025/09/08 09:29:55 [notice] 1550304#1550304: using the "epoll" event method -2025/09/08 09:29:55 [debug] 1550304#1550304: counter: 00007759D7698080, 1 -2025/09/08 09:29:55 [notice] 1550304#1550304: nginx/1.18.0 (Ubuntu) -2025/09/08 09:29:55 [notice] 1550304#1550304: OS: Linux 6.12.10-76061203-generic -2025/09/08 09:29:55 [notice] 1550304#1550304: getrlimit(RLIMIT_NOFILE): 1048576:1048576 -2025/09/08 09:29:55 [debug] 1550305#1550304: write: 6, 00007FFC3D9370E0, 8, 0 -2025/09/08 09:29:55 [debug] 1550305#1550305: setproctitle: "nginx: master process nginx -p . -c config/local-nginx.conf" -2025/09/08 09:29:55 [notice] 1550305#1550305: start worker processes -2025/09/08 09:29:55 [debug] 1550305#1550305: channel 6:7 -2025/09/08 09:29:55 [notice] 1550305#1550305: start worker process 1550306 -2025/09/08 09:29:55 [debug] 1550305#1550305: sigsuspend -2025/09/08 09:29:55 [debug] 1550306#1550306: add cleanup: 00005B8F5192D4E0 -2025/09/08 09:29:55 [debug] 1550306#1550306: malloc: 00005B8F518B9BD0:8 -2025/09/08 09:29:55 [debug] 1550306#1550306: notify eventfd: 9 -2025/09/08 09:29:55 [debug] 1550306#1550306: testing the EPOLLRDHUP flag: success -2025/09/08 09:29:55 [debug] 1550306#1550306: malloc: 00005B8F518CF060:6144 -2025/09/08 09:29:55 [debug] 1550306#1550306: malloc: 00007759D7490010:237568 -2025/09/08 09:29:55 [debug] 1550306#1550306: malloc: 00005B8F51930210:98304 -2025/09/08 09:29:55 [debug] 1550306#1550306: malloc: 00005B8F51948220:98304 -2025/09/08 09:29:55 [debug] 1550306#1550306: epoll add event: fd:5 op:1 ev:00002001 -2025/09/08 09:29:55 [debug] 1550306#1550306: epoll add event: fd:7 op:1 ev:00002001 -2025/09/08 09:29:55 [debug] 1550306#1550306: setproctitle: "nginx: worker process" -2025/09/08 09:29:55 [debug] 1550306#1550306: worker cycle -2025/09/08 09:29:55 [debug] 1550306#1550306: epoll timer: -1 -2025/09/08 09:30:09 [debug] 1550306#1550306: epoll: fd:5 ev:0001 d:00007759D7490010 -2025/09/08 09:30:09 [debug] 1550306#1550306: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: posix_memalign: 00005B8F518B8840:512 @16 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 accept: 127.0.0.1:45564 fd:6 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 event timer add: 6: 60000:591970277 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 reusable connection: 1 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 09:30:09 [debug] 1550306#1550306: timer delta: 14322 -2025/09/08 09:30:09 [debug] 1550306#1550306: worker cycle -2025/09/08 09:30:09 [debug] 1550306#1550306: epoll timer: 60000 -2025/09/08 09:30:09 [debug] 1550306#1550306: epoll: fd:6 ev:0001 d:00007759D74901E0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http wait request handler -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 malloc: 00005B8F518BB0A0:1024 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 recv: eof:0, avail:-1 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 recv: fd:6 154 of 1024 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 reusable connection: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 posix_memalign: 00005B8F518DA500:4096 @16 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http process request line -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http request line: "PUT /upload HTTP/1.1" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http uri: "/upload" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http args: "" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http exten: "" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 posix_memalign: 00005B8F518D0870:4096 @16 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http process request header line -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http header: "Host: localhost:9001" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http header: "User-Agent: curl/8.15.0" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http header: "Accept: */*" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http header: "Content-Type: text/plain" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http header: "Content-Length: 24" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http header done -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 event timer del: 6: 591970277 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 generic phase: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 rewrite phase: 1 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 test location: "/health" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 test location: "/report" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 test location: "/upload" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 using configuration "=/upload" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http cl:24 max:104857600 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 rewrite phase: 3 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "PUT" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script regex: "^(PUT|HEAD)$" -2025/09/08 09:30:09 [notice] 1550306#1550306: *1 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script if -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script if: false -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 post rewrite phase: 4 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 generic phase: 5 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 generic phase: 6 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 generic phase: 7 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 access phase: 8 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 access phase: 9 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 access phase: 10 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 post access phase: 11 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 generic phase: 12 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 generic phase: 13 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http client request body preread 24 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http request body content length filter -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http body new buf t:1 f:0 00005B8F518BB122, pos 00005B8F518BB122, size: 24 file: 0, size: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http init upstream, client timer: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "QUERY_STRING" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "QUERY_STRING: " -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "REQUEST_METHOD" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "PUT" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "CONTENT_TYPE" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "text/plain" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "CONTENT_LENGTH" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "24" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "CONTENT_LENGTH: 24" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "SCRIPT_NAME" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "/upload" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "REQUEST_URI" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "/upload" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "REQUEST_URI: /upload" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "DOCUMENT_URI" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "/upload" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "DOCUMENT_ROOT" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "./blobs" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "SERVER_PROTOCOL" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "HTTP/1.1" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "REQUEST_SCHEME" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "http" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "GATEWAY_INTERFACE" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "CGI/1.1" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "SERVER_SOFTWARE" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "nginx/" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "1.18.0" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "REMOTE_ADDR" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "127.0.0.1" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "REMOTE_PORT" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "45564" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "REMOTE_PORT: 45564" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "SERVER_ADDR" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "127.0.0.1" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "SERVER_PORT" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "9001" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "SERVER_NAME" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "localhost" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "REDIRECT_STATUS" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "200" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "SCRIPT_FILENAME" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script var: "./blobs" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http script copy: "/ginxsom.fcgi" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 fastcgi param: "HTTP_CONTENT_LENGTH: 24" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http cleanup add: 00005B8F518D1690 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 get rr peer, try: 1 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 stream socket 10 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 epoll add connection: fd:10 ev:80002005 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #2 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 connected -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http upstream connect: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 posix_memalign: 00005B8F518A1F20:128 @16 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http upstream send request -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http upstream send request body -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 chain writer buf fl:0 s:584 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 chain writer buf fl:0 s:24 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 chain writer buf fl:0 s:8 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 chain writer in: 00005B8F518D1700 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 writev: 616 of 616 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 chain writer out: 0000000000000000 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 event timer add: 10: 60000:591970277 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http request count:2 blk:0 -2025/09/08 09:30:09 [debug] 1550306#1550306: timer delta: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: worker cycle -2025/09/08 09:30:09 [debug] 1550306#1550306: epoll timer: 60000 -2025/09/08 09:30:09 [debug] 1550306#1550306: epoll: fd:6 ev:0004 d:00007759D74901E0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http run request: "/upload?" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http upstream check client, write event:1, "/upload" -2025/09/08 09:30:09 [debug] 1550306#1550306: epoll: fd:10 ev:0004 d:00007759D74902C8 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http upstream request: "/upload?" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http upstream dummy handler -2025/09/08 09:30:09 [debug] 1550306#1550306: timer delta: 1 -2025/09/08 09:30:09 [debug] 1550306#1550306: worker cycle -2025/09/08 09:30:09 [debug] 1550306#1550306: epoll timer: 59999 -2025/09/08 09:30:09 [debug] 1550306#1550306: epoll: fd:10 ev:0005 d:00007759D74902C8 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http upstream request: "/upload?" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http upstream process header -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 malloc: 00005B8F518C2140:4096 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 posix_memalign: 00005B8F518C3150:4096 @16 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 recv: eof:0, avail:-1 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 recv: fd:10 152 of 4096 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 01 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 07 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 01 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 8A -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 06 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record length: 138 -2025/09/08 09:30:09 [error] 1550306#1550306: *1 FastCGI sent in stderr: "LOG: [2025-09-08 09:30:09] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-08 09:30:09] PUT /upload - Auth: anonymous - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 recv: eof:0, avail:0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http upstream request: "/upload?" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http upstream dummy handler -2025/09/08 09:30:09 [debug] 1550306#1550306: timer delta: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: worker cycle -2025/09/08 09:30:09 [debug] 1550306#1550306: epoll timer: 59999 -2025/09/08 09:30:09 [debug] 1550306#1550306: epoll: fd:10 ev:2005 d:00007759D74902C8 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http upstream request: "/upload?" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http upstream process header -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 recv: eof:1, avail:-1 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 recv: fd:10 712 of 3944 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 01 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 07 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 01 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 69 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 07 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record length: 105 -2025/09/08 09:30:09 [error] 1550306#1550306: *1 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 0, auth_header present: NO -AUTH: About to perform authentication validation" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 01 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 07 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 01 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record length: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 01 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 06 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 01 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 02 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 24 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 04 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record length: 548 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi parser: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi header: "Status: 200 OK" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi parser: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi header: "Content-Type: application/json" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi parser: 1 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi header done -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 13:30:09 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 write new buf t:1 f:0 00005B8F518C32F0, pos 00005B8F518C32F0, size: 260 file: 0, size: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http write filter: l:0 f:0 s:260 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http cacheable: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http upstream process upstream -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 pipe read upstream: 1 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 pipe preread: 526 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 readv: eof:1, avail:0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 readv: 1, last:3232 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 pipe recv chain: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 pipe buf free s:0 t:1 f:0 00005B8F518C2140, pos 00005B8F518C2292, size: 526 file: 0, size: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 pipe length: -1 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 input buf #0 00005B8F518C2292 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 01 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 06 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 01 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record length: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi closed stdout -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 01 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 03 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 01 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 08 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record byte: 00 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi record length: 8 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http fastcgi sent end request -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 input buf 00005B8F518C2292 498 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 pipe write downstream: 1 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 pipe write downstream flush in -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http output filter "/upload?" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http copy filter: "/upload?" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http postpone filter "/upload?" 00005B8F518D16D0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http chunk: 498 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 write old buf t:1 f:0 00005B8F518C32F0, pos 00005B8F518C32F0, size: 260 file: 0, size: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 write new buf t:1 f:0 00005B8F518D1840, pos 00005B8F518D1840, size: 5 file: 0, size: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 write new buf t:1 f:0 00005B8F518C2140, pos 00005B8F518C2292, size: 498 file: 0, size: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 write new buf t:0 f:0 0000000000000000, pos 00005B8F4BC6A2E8, size: 2 file: 0, size: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http write filter: l:0 f:0 s:765 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http copy filter: 0 "/upload?" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 pipe write downstream done -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 event timer: 10, old: 591970277, new: 591970283 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http upstream exit: 0000000000000000 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 finalize http upstream request: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 finalize http fastcgi request -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 free rr peer 1 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 close http upstream connection: 10 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 free: 00005B8F518A1F20, unused: 48 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 event timer del: 10: 591970277 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 reusable connection: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http upstream temp fd: -1 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http output filter "/upload?" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http copy filter: "/upload?" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http postpone filter "/upload?" 00007FFC3D936D20 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http chunk: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 write old buf t:1 f:0 00005B8F518C32F0, pos 00005B8F518C32F0, size: 260 file: 0, size: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 write old buf t:1 f:0 00005B8F518D1840, pos 00005B8F518D1840, size: 5 file: 0, size: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 write old buf t:1 f:0 00005B8F518C2140, pos 00005B8F518C2292, size: 498 file: 0, size: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 write old buf t:0 f:0 0000000000000000, pos 00005B8F4BC6A2E8, size: 2 file: 0, size: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 write new buf t:0 f:0 0000000000000000, pos 00005B8F4BC6A2E5, size: 5 file: 0, size: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http write filter: l:1 f:0 s:770 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http write filter limit 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 writev: 770 of 770 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http write filter 0000000000000000 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http copy filter: 0 "/upload?" -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 set http keepalive handler -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http close request -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http log handler -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 free: 00005B8F518C2140 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 free: 00005B8F518DA500, unused: 3 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 free: 00005B8F518D0870, unused: 8 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 free: 00005B8F518C3150, unused: 2410 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 free: 00005B8F518BB0A0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 hc free: 0000000000000000 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 hc busy: 0000000000000000 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 tcp_nodelay -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 reusable connection: 1 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 event timer add: 6: 65000:591975283 -2025/09/08 09:30:09 [debug] 1550306#1550306: timer delta: 5 -2025/09/08 09:30:09 [debug] 1550306#1550306: worker cycle -2025/09/08 09:30:09 [debug] 1550306#1550306: epoll timer: 65000 -2025/09/08 09:30:09 [debug] 1550306#1550306: epoll: fd:6 ev:2005 d:00007759D74901E0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 http keepalive handler -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 malloc: 00005B8F518BB0A0:1024 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 recv: eof:1, avail:-1 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 recv: fd:6 0 of 1024 -2025/09/08 09:30:09 [info] 1550306#1550306: *1 client 127.0.0.1 closed keepalive connection -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 close http connection: 6 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 event timer del: 6: 591975283 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 reusable connection: 0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 free: 00005B8F518BB0A0 -2025/09/08 09:30:09 [debug] 1550306#1550306: *1 free: 00005B8F518B8840, unused: 120 -2025/09/08 09:30:09 [debug] 1550306#1550306: timer delta: 1 -2025/09/08 09:30:09 [debug] 1550306#1550306: worker cycle -2025/09/08 09:30:09 [debug] 1550306#1550306: epoll timer: -1 -2025/09/08 09:31:44 [debug] 1550306#1550306: epoll: fd:5 ev:0001 d:00007759D7490010 -2025/09/08 09:31:44 [debug] 1550306#1550306: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 09:31:44 [debug] 1550306#1550306: posix_memalign: 00005B8F518B8840:512 @16 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 accept: 127.0.0.1:40916 fd:6 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 event timer add: 6: 60000:592064427 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 reusable connection: 1 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 09:31:44 [debug] 1550306#1550306: timer delta: 94143 -2025/09/08 09:31:44 [debug] 1550306#1550306: worker cycle -2025/09/08 09:31:44 [debug] 1550306#1550306: epoll timer: 60000 -2025/09/08 09:31:44 [debug] 1550306#1550306: epoll: fd:6 ev:0001 d:00007759D74901E1 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http wait request handler -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 malloc: 00005B8F518BB0A0:1024 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 recv: eof:0, avail:-1 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 recv: fd:6 212 of 1024 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 reusable connection: 0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 posix_memalign: 00005B8F518DA500:4096 @16 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http process request line -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http request line: "HEAD /upload HTTP/1.1" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http uri: "/upload" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http args: "" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http exten: "" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 posix_memalign: 00005B8F518D0870:4096 @16 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http process request header line -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http header: "Host: localhost:9001" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http header: "User-Agent: curl/8.15.0" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http header: "Accept: */*" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http header: "X-SHA-256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http header: "X-Content-Length: 21" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http header: "X-Content-Type: text/plain" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http header done -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 event timer del: 6: 592064427 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 generic phase: 0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 rewrite phase: 1 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 test location: "/health" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 test location: "/report" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 test location: "/upload" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 using configuration "=/upload" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http cl:-1 max:104857600 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 rewrite phase: 3 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script var -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script var: "HEAD" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script regex: "^(PUT|HEAD)$" -2025/09/08 09:31:44 [notice] 1550306#1550306: *3 "^(PUT|HEAD)$" matches "HEAD", client: 127.0.0.1, server: localhost, request: "HEAD /upload HTTP/1.1", host: "localhost:9001" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script if -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script if: false -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 post rewrite phase: 4 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 generic phase: 5 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 generic phase: 6 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 generic phase: 7 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 access phase: 8 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 access phase: 9 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 access phase: 10 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 post access phase: 11 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 generic phase: 12 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 generic phase: 13 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http init upstream, client timer: 0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "QUERY_STRING" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "QUERY_STRING: " -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "REQUEST_METHOD" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script var: "HEAD" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "REQUEST_METHOD: HEAD" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "CONTENT_TYPE" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "CONTENT_TYPE: " -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "CONTENT_LENGTH" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "CONTENT_LENGTH: " -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "SCRIPT_NAME" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script var: "/upload" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "REQUEST_URI" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script var: "/upload" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "REQUEST_URI: /upload" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "DOCUMENT_URI" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script var: "/upload" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "DOCUMENT_ROOT" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script var: "./blobs" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "SERVER_PROTOCOL" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script var: "HTTP/1.1" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "REQUEST_SCHEME" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script var: "http" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "GATEWAY_INTERFACE" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "CGI/1.1" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "SERVER_SOFTWARE" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "nginx/" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script var: "1.18.0" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "REMOTE_ADDR" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script var: "127.0.0.1" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "REMOTE_PORT" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script var: "40916" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "REMOTE_PORT: 40916" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "SERVER_ADDR" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script var: "127.0.0.1" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "SERVER_PORT" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script var: "9001" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "SERVER_NAME" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script var: "localhost" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "REDIRECT_STATUS" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "200" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "SCRIPT_FILENAME" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script var: "./blobs" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http script copy: "/ginxsom.fcgi" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "HTTP_X_SHA_256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "HTTP_X_CONTENT_LENGTH: 21" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 fastcgi param: "HTTP_X_CONTENT_TYPE: text/plain" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http cleanup add: 00005B8F518D15B0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 get rr peer, try: 1 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 stream socket 10 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 epoll add connection: fd:10 ev:80002005 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #4 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 connected -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http upstream connect: 0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 posix_memalign: 00005B8F518A1F20:128 @16 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http upstream send request -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http upstream send request body -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 chain writer buf fl:0 s:656 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 chain writer in: 00005B8F518D15F0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 writev: 656 of 656 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 chain writer out: 0000000000000000 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 event timer add: 10: 60000:592064427 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http request count:2 blk:0 -2025/09/08 09:31:44 [debug] 1550306#1550306: timer delta: 0 -2025/09/08 09:31:44 [debug] 1550306#1550306: worker cycle -2025/09/08 09:31:44 [debug] 1550306#1550306: epoll timer: 60000 -2025/09/08 09:31:44 [debug] 1550306#1550306: epoll: fd:6 ev:0004 d:00007759D74901E1 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http run request: "/upload?" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http upstream check client, write event:1, "/upload" -2025/09/08 09:31:44 [debug] 1550306#1550306: epoll: fd:10 ev:0004 d:00007759D74902C9 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http upstream request: "/upload?" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http upstream dummy handler -2025/09/08 09:31:44 [debug] 1550306#1550306: timer delta: 1 -2025/09/08 09:31:44 [debug] 1550306#1550306: worker cycle -2025/09/08 09:31:44 [debug] 1550306#1550306: epoll timer: 59999 -2025/09/08 09:31:44 [debug] 1550306#1550306: epoll: fd:10 ev:0005 d:00007759D74902C9 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http upstream request: "/upload?" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http upstream process header -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 malloc: 00005B8F518C2140:4096 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 recv: eof:0, avail:-1 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 recv: fd:10 456 of 4096 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 01 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 07 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 00 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 01 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 00 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 89 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 07 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 00 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record length: 137 -2025/09/08 09:31:44 [error] 1550306#1550306: *3 FastCGI sent in stderr: "LOG: [2025-09-08 09:31:44] HEAD /upload - Auth: pending - Status: 0 -LOG: [2025-09-08 09:31:44] HEAD /upload - Auth: none - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "HEAD /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 01 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 07 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 00 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 01 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 00 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 00 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 00 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 00 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record length: 0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 01 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 06 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 00 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 01 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 01 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 03 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 05 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record byte: 00 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi record length: 259 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi parser: 0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi header: "Status: 200 OK" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi parser: 0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi header: "Content-Type: application/json" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi parser: 0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi header: "X-Upload-Status: Ready" -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi parser: 1 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http fastcgi header done -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 posix_memalign: 00005B8F518C3150:4096 @16 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 13:31:44 GMT -Content-Type: application/json -Connection: keep-alive -X-Upload-Status: Ready -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 write new buf t:1 f:0 00005B8F518C31C0, pos 00005B8F518C31C0, size: 256 file: 0, size: 0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http write filter: l:1 f:0 s:256 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http write filter limit 0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 writev: 256 of 256 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http write filter 0000000000000000 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 finalize http upstream request: 0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 finalize http fastcgi request -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 free rr peer 1 0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 close http upstream connection: 10 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 free: 00005B8F518A1F20, unused: 48 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 event timer del: 10: 592064427 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 reusable connection: 0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 set http keepalive handler -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http close request -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 http log handler -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 free: 00005B8F518C2140 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 free: 00005B8F518DA500, unused: 3 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 free: 00005B8F518D0870, unused: 29 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 free: 00005B8F518C3150, unused: 3601 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 free: 00005B8F518BB0A0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 hc free: 0000000000000000 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 hc busy: 0000000000000000 0 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 tcp_nodelay -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 reusable connection: 1 -2025/09/08 09:31:44 [debug] 1550306#1550306: *3 event timer add: 6: 65000:592069429 -2025/09/08 09:31:44 [debug] 1550306#1550306: timer delta: 1 -2025/09/08 09:31:44 [debug] 1550306#1550306: worker cycle -2025/09/08 09:31:44 [debug] 1550306#1550306: epoll timer: 65000 -2025/09/08 09:32:30 [debug] 1550306#1550306: epoll: fd:6 ev:2005 d:00007759D74901E1 -2025/09/08 09:32:30 [debug] 1550306#1550306: *3 http keepalive handler -2025/09/08 09:32:30 [debug] 1550306#1550306: *3 malloc: 00005B8F518BB0A0:1024 -2025/09/08 09:32:30 [debug] 1550306#1550306: *3 recv: eof:1, avail:-1 -2025/09/08 09:32:30 [debug] 1550306#1550306: *3 recv: fd:6 0 of 1024 -2025/09/08 09:32:30 [info] 1550306#1550306: *3 client 127.0.0.1 closed keepalive connection -2025/09/08 09:32:30 [debug] 1550306#1550306: *3 close http connection: 6 -2025/09/08 09:32:30 [debug] 1550306#1550306: *3 event timer del: 6: 592069429 -2025/09/08 09:32:30 [debug] 1550306#1550306: *3 reusable connection: 0 -2025/09/08 09:32:30 [debug] 1550306#1550306: *3 free: 00005B8F518BB0A0 -2025/09/08 09:32:30 [debug] 1550306#1550306: *3 free: 00005B8F518B8840, unused: 120 -2025/09/08 09:32:30 [debug] 1550306#1550306: timer delta: 46046 -2025/09/08 09:32:30 [debug] 1550306#1550306: worker cycle -2025/09/08 09:32:30 [debug] 1550306#1550306: epoll timer: -1 -2025/09/08 09:32:53 [debug] 1550306#1550306: epoll: fd:5 ev:0001 d:00007759D7490010 -2025/09/08 09:32:53 [debug] 1550306#1550306: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: posix_memalign: 00005B8F518B8840:512 @16 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 accept: 127.0.0.1:52490 fd:6 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 event timer add: 6: 60000:592133643 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 reusable connection: 1 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 09:32:53 [debug] 1550306#1550306: timer delta: 23168 -2025/09/08 09:32:53 [debug] 1550306#1550306: worker cycle -2025/09/08 09:32:53 [debug] 1550306#1550306: epoll timer: 60000 -2025/09/08 09:32:53 [debug] 1550306#1550306: epoll: fd:6 ev:0001 d:00007759D74901E0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http wait request handler -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 malloc: 00005B8F518BB0A0:1024 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 recv: eof:0, avail:-1 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 recv: fd:6 1024 of 1024 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 recv: avail:112 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 reusable connection: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 posix_memalign: 00005B8F518DA500:4096 @16 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http process request line -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http request line: "PUT /upload HTTP/1.1" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http uri: "/upload" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http args: "" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http exten: "" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 posix_memalign: 00005B8F518D0870:4096 @16 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http process request header line -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http header: "Host: localhost:9001" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http header: "User-Agent: curl/8.15.0" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http header: "Accept: */*" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http header: "Authorization: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiJkYWY1YmZkZWUwMjgxZTVlZTFmN2NhNDUyNTI1YjE0NjAwYjE0NGY5ZjNhYjFjNjZhNTJlMTgzMGE2NmZiNjg0IiwicHVia2V5IjoiNzliZTY2N2VmOWRjYmJhYzU1YTA2Mjk1Y2U4NzBiMDcwMjliZmNkYjJkY2UyOGQ5NTlmMjgxNWIxNmY4MTc5OCIsImNyZWF0ZWRfYXQiOjE3NTczMzgzNzMsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbIngiLCJkYzNiMWZhNzI3MzlkNmVmNGU4YTdmZDEwYjc2OTQ3ZTNhYzllMmI5MTU1ZDkwZGE4NGQxMTQ4MDI0YjE3N2QxIl0sWyJleHBpcmF0aW9uIiwiMTc1NzM0MTk3MyJdXSwiY29udGVudCI6IiIsInNpZyI6ImIzZjJlZWU1YmU2NzJiZDk0OWVkMzExYjc3ODdmMzk1OTQ4ZDkyMDQ1M2VjYmYxMTgyODhiZTY3Y2U1ZmMyODEyODhlY2U5Y2RjZDhjYjAxOWE1ZTBiZGVkMzUwNjdiYjVlN2Q2OTVjOWJmZTMxNTgxNWRhOTEwYjc1M2JlZjFjIn0=" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http header: "Content-Type: text/plain" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http header: "Content-Disposition: attachment; filename="test_blob_1757338373.txt"" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http header: "Content-Length: 296" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http header done -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 event timer del: 6: 592133643 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 generic phase: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 rewrite phase: 1 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 test location: "/health" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 test location: "/report" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 test location: "/upload" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 using configuration "=/upload" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http cl:296 max:104857600 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 rewrite phase: 3 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "PUT" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script regex: "^(PUT|HEAD)$" -2025/09/08 09:32:53 [notice] 1550306#1550306: *5 "^(PUT|HEAD)$" matches "PUT", client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", host: "localhost:9001" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script if -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script if: false -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 post rewrite phase: 4 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 generic phase: 5 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 generic phase: 6 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 generic phase: 7 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 access phase: 8 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 access phase: 9 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 access phase: 10 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 post access phase: 11 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 generic phase: 12 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 generic phase: 13 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http client request body preread 184 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http request body content length filter -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http body new buf t:1 f:0 00005B8F518BB3E8, pos 00005B8F518BB3E8, size: 184 file: 0, size: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http read client request body -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 recv: eof:0, avail:112 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 recv: fd:6 112 of 112 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 recv: avail:0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http client request body recv 112 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http body new buf t:1 f:0 00005B8F518D1308, pos 00005B8F518D1308, size: 112 file: 0, size: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http client request body rest 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http init upstream, client timer: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 posix_memalign: 00005B8F518C2140:4096 @16 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "QUERY_STRING" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "QUERY_STRING: " -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "REQUEST_METHOD" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "PUT" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "REQUEST_METHOD: PUT" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "CONTENT_TYPE" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "text/plain" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "CONTENT_TYPE: text/plain" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "CONTENT_LENGTH" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "296" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "CONTENT_LENGTH: 296" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "SCRIPT_NAME" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "/upload" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "REQUEST_URI" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "/upload" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "REQUEST_URI: /upload" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "DOCUMENT_URI" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "/upload" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "DOCUMENT_ROOT" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "./blobs" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "SERVER_PROTOCOL" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "HTTP/1.1" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "REQUEST_SCHEME" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "http" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "GATEWAY_INTERFACE" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "CGI/1.1" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "SERVER_SOFTWARE" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "nginx/" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "1.18.0" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "REMOTE_ADDR" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "127.0.0.1" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "REMOTE_PORT" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "52490" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "REMOTE_PORT: 52490" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "SERVER_ADDR" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "127.0.0.1" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "SERVER_PORT" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "9001" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "SERVER_NAME" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "localhost" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "REDIRECT_STATUS" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "200" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "SCRIPT_FILENAME" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script var: "./blobs" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http script copy: "/ginxsom.fcgi" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "HTTP_AUTHORIZATION: Nostr eyJraW5kIjoyNDI0MiwiaWQiOiJkYWY1YmZkZWUwMjgxZTVlZTFmN2NhNDUyNTI1YjE0NjAwYjE0NGY5ZjNhYjFjNjZhNTJlMTgzMGE2NmZiNjg0IiwicHVia2V5IjoiNzliZTY2N2VmOWRjYmJhYzU1YTA2Mjk1Y2U4NzBiMDcwMjliZmNkYjJkY2UyOGQ5NTlmMjgxNWIxNmY4MTc5OCIsImNyZWF0ZWRfYXQiOjE3NTczMzgzNzMsInRhZ3MiOltbInQiLCJ1cGxvYWQiXSxbIngiLCJkYzNiMWZhNzI3MzlkNmVmNGU4YTdmZDEwYjc2OTQ3ZTNhYzllMmI5MTU1ZDkwZGE4NGQxMTQ4MDI0YjE3N2QxIl0sWyJleHBpcmF0aW9uIiwiMTc1NzM0MTk3MyJdXSwiY29udGVudCI6IiIsInNpZyI6ImIzZjJlZWU1YmU2NzJiZDk0OWVkMzExYjc3ODdmMzk1OTQ4ZDkyMDQ1M2VjYmYxMTgyODhiZTY3Y2U1ZmMyODEyODhlY2U5Y2RjZDhjYjAxOWE1ZTBiZGVkMzUwNjdiYjVlN2Q2OTVjOWJmZTMxNTgxNWRhOTEwYjc1M2JlZjFjIn0=" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "HTTP_CONTENT_TYPE: text/plain" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "HTTP_CONTENT_DISPOSITION: attachment; filename="test_blob_1757338373.txt"" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 fastcgi param: "HTTP_CONTENT_LENGTH: 296" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http cleanup add: 00005B8F518D1660 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 get rr peer, try: 1 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 stream socket 10 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 epoll add connection: fd:10 ev:80002005 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #6 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 connected -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http upstream connect: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 posix_memalign: 00005B8F518A1F20:128 @16 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http upstream send request -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http upstream send request body -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 chain writer buf fl:0 s:1304 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 chain writer buf fl:0 s:184 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 chain writer buf fl:0 s:8 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 chain writer buf fl:0 s:112 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 chain writer buf fl:0 s:8 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 chain writer in: 00005B8F518D16F0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 writev: 1616 of 1616 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 chain writer out: 0000000000000000 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 event timer add: 10: 60000:592133643 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http request count:2 blk:0 -2025/09/08 09:32:53 [debug] 1550306#1550306: timer delta: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: worker cycle -2025/09/08 09:32:53 [debug] 1550306#1550306: epoll timer: 60000 -2025/09/08 09:32:53 [debug] 1550306#1550306: epoll: fd:6 ev:0004 d:00007759D74901E0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http run request: "/upload?" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http upstream check client, write event:1, "/upload" -2025/09/08 09:32:53 [debug] 1550306#1550306: epoll: fd:10 ev:0004 d:00007759D74902C8 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http upstream request: "/upload?" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http upstream dummy handler -2025/09/08 09:32:53 [debug] 1550306#1550306: timer delta: 1 -2025/09/08 09:32:53 [debug] 1550306#1550306: worker cycle -2025/09/08 09:32:53 [debug] 1550306#1550306: epoll timer: 59999 -2025/09/08 09:32:53 [debug] 1550306#1550306: epoll: fd:10 ev:0005 d:00007759D74902C8 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http upstream request: "/upload?" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http upstream process header -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 malloc: 00005B8F518C3150:4096 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 recv: eof:0, avail:-1 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 recv: fd:10 152 of 4096 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 01 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 07 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 01 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 8E -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 02 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record length: 142 -2025/09/08 09:32:53 [error] 1550306#1550306: *5 FastCGI sent in stderr: "LOG: [2025-09-08 09:32:53] PUT /upload - Auth: pending - Status: 0 -LOG: [2025-09-08 09:32:53] PUT /upload - Auth: auth_provided - Status: 0" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 recv: eof:0, avail:0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http upstream request: "/upload?" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http upstream dummy handler -2025/09/08 09:32:53 [debug] 1550306#1550306: timer delta: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: worker cycle -2025/09/08 09:32:53 [debug] 1550306#1550306: epoll timer: 59999 -2025/09/08 09:32:53 [debug] 1550306#1550306: epoll: fd:10 ev:2005 d:00007759D74902C8 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http upstream request: "/upload?" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http upstream process header -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 recv: eof:1, avail:-1 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 recv: fd:10 712 of 3944 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 01 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 07 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 01 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 6A -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 06 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record length: 106 -2025/09/08 09:32:53 [error] 1550306#1550306: *5 FastCGI sent in stderr: "AUTH: auth_rules_enabled = 0, auth_header present: YES -AUTH: About to perform authentication validation" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "PUT /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 01 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 07 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 01 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record length: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 01 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 06 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 01 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 02 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 26 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 02 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record length: 550 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi parser: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi header: "Status: 200 OK" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi parser: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi header: "Content-Type: application/json" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi parser: 1 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi header done -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 13:32:53 GMT -Content-Type: application/json -Transfer-Encoding: chunked -Connection: keep-alive -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 write new buf t:1 f:0 00005B8F518C27F8, pos 00005B8F518C27F8, size: 260 file: 0, size: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http write filter: l:0 f:0 s:260 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http cacheable: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http upstream process upstream -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 pipe read upstream: 1 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 pipe preread: 526 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 readv: eof:1, avail:0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 readv: 1, last:3232 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 pipe recv chain: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 pipe buf free s:0 t:1 f:0 00005B8F518C3150, pos 00005B8F518C32A2, size: 526 file: 0, size: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 pipe length: -1 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 input buf #0 00005B8F518C32A2 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 01 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 06 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 01 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record length: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi closed stdout -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 01 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 03 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 01 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 08 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record byte: 00 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi record length: 8 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http fastcgi sent end request -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 input buf 00005B8F518C32A2 500 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 pipe write downstream: 1 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 pipe write downstream flush in -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http output filter "/upload?" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http copy filter: "/upload?" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http postpone filter "/upload?" 00005B8F518D16C0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http chunk: 500 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 write old buf t:1 f:0 00005B8F518C27F8, pos 00005B8F518C27F8, size: 260 file: 0, size: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 write new buf t:1 f:0 00005B8F518D1850, pos 00005B8F518D1850, size: 5 file: 0, size: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 write new buf t:1 f:0 00005B8F518C3150, pos 00005B8F518C32A2, size: 500 file: 0, size: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 write new buf t:0 f:0 0000000000000000, pos 00005B8F4BC6A2E8, size: 2 file: 0, size: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http write filter: l:0 f:0 s:767 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http copy filter: 0 "/upload?" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 pipe write downstream done -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 event timer: 10, old: 592133643, new: 592133647 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http upstream exit: 0000000000000000 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 finalize http upstream request: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 finalize http fastcgi request -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 free rr peer 1 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 close http upstream connection: 10 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 free: 00005B8F518A1F20, unused: 48 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 event timer del: 10: 592133643 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 reusable connection: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http upstream temp fd: -1 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http output filter "/upload?" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http copy filter: "/upload?" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http postpone filter "/upload?" 00007FFC3D936D20 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http chunk: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 write old buf t:1 f:0 00005B8F518C27F8, pos 00005B8F518C27F8, size: 260 file: 0, size: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 write old buf t:1 f:0 00005B8F518D1850, pos 00005B8F518D1850, size: 5 file: 0, size: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 write old buf t:1 f:0 00005B8F518C3150, pos 00005B8F518C32A2, size: 500 file: 0, size: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 write old buf t:0 f:0 0000000000000000, pos 00005B8F4BC6A2E8, size: 2 file: 0, size: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 write new buf t:0 f:0 0000000000000000, pos 00005B8F4BC6A2E5, size: 5 file: 0, size: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http write filter: l:1 f:0 s:772 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http write filter limit 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 writev: 772 of 772 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http write filter 0000000000000000 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http copy filter: 0 "/upload?" -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 set http keepalive handler -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http close request -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http log handler -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 free: 00005B8F518C3150 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 free: 00005B8F518DA500, unused: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 free: 00005B8F518D0870, unused: 14 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 free: 00005B8F518C2140, unused: 1154 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 free: 00005B8F518BB0A0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 hc free: 0000000000000000 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 hc busy: 0000000000000000 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 tcp_nodelay -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 reusable connection: 1 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 event timer add: 6: 65000:592138647 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 post event 00005B8F519302D0 -2025/09/08 09:32:53 [debug] 1550306#1550306: timer delta: 3 -2025/09/08 09:32:53 [debug] 1550306#1550306: posted event 00005B8F519302D0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 delete posted event 00005B8F519302D0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http keepalive handler -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 malloc: 00005B8F518BB0A0:1024 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 recv: eof:0, avail:0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 free: 00005B8F518BB0A0 -2025/09/08 09:32:53 [debug] 1550306#1550306: worker cycle -2025/09/08 09:32:53 [debug] 1550306#1550306: epoll timer: 65000 -2025/09/08 09:32:53 [debug] 1550306#1550306: epoll: fd:6 ev:2005 d:00007759D74901E0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 http keepalive handler -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 malloc: 00005B8F518BB0A0:1024 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 recv: eof:1, avail:-1 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 recv: fd:6 0 of 1024 -2025/09/08 09:32:53 [info] 1550306#1550306: *5 client 127.0.0.1 closed keepalive connection -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 close http connection: 6 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 event timer del: 6: 592138647 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 reusable connection: 0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 free: 00005B8F518BB0A0 -2025/09/08 09:32:53 [debug] 1550306#1550306: *5 free: 00005B8F518B8840, unused: 120 -2025/09/08 09:32:53 [debug] 1550306#1550306: timer delta: 1 -2025/09/08 09:32:53 [debug] 1550306#1550306: worker cycle -2025/09/08 09:32:53 [debug] 1550306#1550306: epoll timer: -1 -2025/09/08 09:33:10 [debug] 1550306#1550306: epoll: fd:5 ev:0001 d:00007759D7490010 -2025/09/08 09:33:10 [debug] 1550306#1550306: accept on 0.0.0.0:9001, ready: 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: posix_memalign: 00005B8F518B8840:512 @16 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 accept: 127.0.0.1:53362 fd:6 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 event timer add: 6: 60000:592150976 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 reusable connection: 1 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 epoll add event: fd:6 op:1 ev:80002001 -2025/09/08 09:33:10 [debug] 1550306#1550306: timer delta: 17328 -2025/09/08 09:33:10 [debug] 1550306#1550306: worker cycle -2025/09/08 09:33:10 [debug] 1550306#1550306: epoll timer: 60000 -2025/09/08 09:33:10 [debug] 1550306#1550306: epoll: fd:6 ev:0001 d:00007759D74901E1 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http wait request handler -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 malloc: 00005B8F518BB0A0:1024 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 recv: eof:0, avail:-1 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 recv: fd:6 212 of 1024 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 reusable connection: 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 posix_memalign: 00005B8F518DA500:4096 @16 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http process request line -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http request line: "HEAD /upload HTTP/1.1" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http uri: "/upload" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http args: "" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http exten: "" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 posix_memalign: 00005B8F518D0870:4096 @16 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http process request header line -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http header: "Host: localhost:9001" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http header: "User-Agent: curl/8.15.0" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http header: "Accept: */*" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http header: "X-SHA-256: 1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http header: "X-Content-Length: 15" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http header: "X-Content-Type: text/plain" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http header done -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 event timer del: 6: 592150976 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 generic phase: 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 rewrite phase: 1 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 test location: "/health" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 test location: "/report" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 test location: "/upload" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 using configuration "=/upload" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http cl:-1 max:104857600 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 rewrite phase: 3 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script var -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script var: "HEAD" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script regex: "^(PUT|HEAD)$" -2025/09/08 09:33:10 [notice] 1550306#1550306: *7 "^(PUT|HEAD)$" matches "HEAD", client: 127.0.0.1, server: localhost, request: "HEAD /upload HTTP/1.1", host: "localhost:9001" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script if -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script if: false -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 post rewrite phase: 4 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 generic phase: 5 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 generic phase: 6 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 generic phase: 7 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 access phase: 8 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 access phase: 9 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 access phase: 10 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 post access phase: 11 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 generic phase: 12 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 generic phase: 13 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http init upstream, client timer: 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 epoll add event: fd:6 op:3 ev:80002005 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "QUERY_STRING" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "QUERY_STRING: " -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "REQUEST_METHOD" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script var: "HEAD" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "REQUEST_METHOD: HEAD" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "CONTENT_TYPE" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "CONTENT_TYPE: " -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "CONTENT_LENGTH" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "CONTENT_LENGTH: " -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "SCRIPT_NAME" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script var: "/upload" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "SCRIPT_NAME: /upload" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "REQUEST_URI" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script var: "/upload" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "REQUEST_URI: /upload" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "DOCUMENT_URI" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script var: "/upload" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "DOCUMENT_URI: /upload" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "DOCUMENT_ROOT" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script var: "./blobs" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "DOCUMENT_ROOT: ./blobs" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "SERVER_PROTOCOL" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script var: "HTTP/1.1" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "REQUEST_SCHEME" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script var: "http" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "REQUEST_SCHEME: http" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "GATEWAY_INTERFACE" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "CGI/1.1" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "SERVER_SOFTWARE" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "nginx/" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script var: "1.18.0" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "SERVER_SOFTWARE: nginx/1.18.0" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "REMOTE_ADDR" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script var: "127.0.0.1" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "REMOTE_ADDR: 127.0.0.1" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "REMOTE_PORT" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script var: "53362" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "REMOTE_PORT: 53362" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "SERVER_ADDR" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script var: "127.0.0.1" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "SERVER_ADDR: 127.0.0.1" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "SERVER_PORT" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script var: "9001" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "SERVER_PORT: 9001" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "SERVER_NAME" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script var: "localhost" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "SERVER_NAME: localhost" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "REDIRECT_STATUS" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "200" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "REDIRECT_STATUS: 200" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "SCRIPT_FILENAME" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script var: "./blobs" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http script copy: "/ginxsom.fcgi" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "SCRIPT_FILENAME: ./blobs/ginxsom.fcgi" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "HTTP_HOST: localhost:9001" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "HTTP_USER_AGENT: curl/8.15.0" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "HTTP_ACCEPT: */*" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "HTTP_X_SHA_256: 1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "HTTP_X_CONTENT_LENGTH: 15" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 fastcgi param: "HTTP_X_CONTENT_TYPE: text/plain" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http cleanup add: 00005B8F518D15B0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 get rr peer, try: 1 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 stream socket 10 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 epoll add connection: fd:10 ev:80002005 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 connect to unix:/tmp/ginxsom-fcgi.sock, fd:10 #8 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 connected -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http upstream connect: 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 posix_memalign: 00005B8F518A1F20:128 @16 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http upstream send request -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http upstream send request body -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 chain writer buf fl:0 s:656 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 chain writer in: 00005B8F518D15F0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 writev: 656 of 656 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 chain writer out: 0000000000000000 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 event timer add: 10: 60000:592150976 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http finalize request: -4, "/upload?" a:1, c:2 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http request count:2 blk:0 -2025/09/08 09:33:10 [debug] 1550306#1550306: timer delta: 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: worker cycle -2025/09/08 09:33:10 [debug] 1550306#1550306: epoll timer: 60000 -2025/09/08 09:33:10 [debug] 1550306#1550306: epoll: fd:6 ev:0004 d:00007759D74901E1 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http run request: "/upload?" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http upstream check client, write event:1, "/upload" -2025/09/08 09:33:10 [debug] 1550306#1550306: epoll: fd:10 ev:0004 d:00007759D74902C9 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http upstream request: "/upload?" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http upstream dummy handler -2025/09/08 09:33:10 [debug] 1550306#1550306: timer delta: 2 -2025/09/08 09:33:10 [debug] 1550306#1550306: worker cycle -2025/09/08 09:33:10 [debug] 1550306#1550306: epoll timer: 59998 -2025/09/08 09:33:10 [debug] 1550306#1550306: epoll: fd:10 ev:2005 d:00007759D74902C9 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http upstream request: "/upload?" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http upstream process header -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 malloc: 00005B8F518C2140:4096 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 recv: eof:1, avail:-1 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 recv: fd:10 456 of 4096 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 01 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 07 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 00 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 01 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 00 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 89 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 07 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 00 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record length: 137 -2025/09/08 09:33:10 [error] 1550306#1550306: *7 FastCGI sent in stderr: "LOG: [2025-09-08 09:33:10] HEAD /upload - Auth: pending - Status: 0 -LOG: [2025-09-08 09:33:10] HEAD /upload - Auth: none - Status: 200" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "HEAD /upload HTTP/1.1", upstream: "fastcgi://unix:/tmp/ginxsom-fcgi.sock:", host: "localhost:9001" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 01 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 07 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 00 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 01 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 00 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 00 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 00 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 00 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record length: 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 01 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 06 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 00 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 01 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 01 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 03 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 05 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record byte: 00 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi record length: 259 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi parser: 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi header: "Status: 200 OK" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi parser: 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi header: "Content-Type: application/json" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi parser: 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi header: "X-Upload-Status: Ready" -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi parser: 1 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http fastcgi header done -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 posix_memalign: 00005B8F518C3150:4096 @16 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 HTTP/1.1 200 OK -Server: nginx/1.18.0 (Ubuntu) -Date: Mon, 08 Sep 2025 13:33:10 GMT -Content-Type: application/json -Connection: keep-alive -X-Upload-Status: Ready -X-Content-Type-Options: nosniff -X-Frame-Options: DENY -X-XSS-Protection: 1; mode=block - -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 write new buf t:1 f:0 00005B8F518C31C0, pos 00005B8F518C31C0, size: 256 file: 0, size: 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http write filter: l:1 f:0 s:256 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http write filter limit 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 writev: 256 of 256 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http write filter 0000000000000000 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 finalize http upstream request: 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 finalize http fastcgi request -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 free rr peer 1 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 close http upstream connection: 10 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 free: 00005B8F518A1F20, unused: 48 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 event timer del: 10: 592150976 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 reusable connection: 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http finalize request: 0, "/upload?" a:1, c:1 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 set http keepalive handler -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http close request -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http log handler -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 free: 00005B8F518C2140 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 free: 00005B8F518DA500, unused: 3 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 free: 00005B8F518D0870, unused: 29 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 free: 00005B8F518C3150, unused: 3601 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 free: 00005B8F518BB0A0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 hc free: 0000000000000000 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 hc busy: 0000000000000000 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 tcp_nodelay -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 reusable connection: 1 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 event timer add: 6: 65000:592155978 -2025/09/08 09:33:10 [debug] 1550306#1550306: timer delta: 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: worker cycle -2025/09/08 09:33:10 [debug] 1550306#1550306: epoll timer: 65000 -2025/09/08 09:33:10 [debug] 1550306#1550306: epoll: fd:6 ev:2005 d:00007759D74901E1 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 http keepalive handler -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 malloc: 00005B8F518BB0A0:1024 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 recv: eof:1, avail:-1 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 recv: fd:6 0 of 1024 -2025/09/08 09:33:10 [info] 1550306#1550306: *7 client 127.0.0.1 closed keepalive connection -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 close http connection: 6 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 event timer del: 6: 592155978 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 reusable connection: 0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 free: 00005B8F518BB0A0 -2025/09/08 09:33:10 [debug] 1550306#1550306: *7 free: 00005B8F518B8840, unused: 120 -2025/09/08 09:33:10 [debug] 1550306#1550306: timer delta: 1 -2025/09/08 09:33:10 [debug] 1550306#1550306: worker cycle -2025/09/08 09:33:10 [debug] 1550306#1550306: epoll timer: -1 diff --git a/logs/fcgi-stderr.log b/logs/fcgi-stderr.log deleted file mode 100755 index 523d2ec..0000000 --- a/logs/fcgi-stderr.log +++ /dev/null @@ -1 +0,0 @@ -FastCGI starting at Mon Sep 8 09:29:55 AM EDT 2025 diff --git a/logs/nginx.pid b/logs/nginx.pid deleted file mode 100644 index 97c236e..0000000 --- a/logs/nginx.pid +++ /dev/null @@ -1 +0,0 @@ -1550305 diff --git a/nostr_core_lib b/nostr_core_lib index 564ff18..7d7c3ea 160000 --- a/nostr_core_lib +++ b/nostr_core_lib @@ -1 +1 @@ -Subproject commit 564ff18a7e753b5fb516e3eec590ce1e32cd0081 +Subproject commit 7d7c3eafe8a8254e3bc19b800cfad0228b788e6c diff --git a/restart-all.sh b/restart-all.sh index bac037b..65de34d 100755 --- a/restart-all.sh +++ b/restart-all.sh @@ -3,6 +3,22 @@ # Combines nginx and FastCGI restart operations for debugging # Configuration + +# Check for --follow flag +if [[ "$1" == "--follow" ]]; then + echo "=== Following logs in real-time ===" + echo "Monitoring: nginx error, nginx access, app stderr, app stdout" + echo "Press Ctrl+C to stop following logs" + echo + + # Start tailing multiple log files + mkdir -p logs/nginx logs/app + touch logs/nginx/error.log logs/nginx/access.log logs/app/stderr.log logs/app/stdout.log + + tail -f logs/nginx/error.log logs/nginx/access.log logs/app/stderr.log logs/app/stdout.log & + wait + exit 0 +fi FCGI_BINARY="./build/ginxsom-fcgi" SOCKET_PATH="/tmp/ginxsom-fcgi.sock" PID_FILE="/tmp/ginxsom-fcgi.pid" @@ -14,6 +30,13 @@ GREEN='\033[0;32m' YELLOW='\033[1;33m' NC='\033[0m' # No Color +# Ensure log directories exist with proper permissions +echo "Creating log directories..." +mkdir -p logs/nginx logs/app +touch logs/app/stderr.log logs/app/stdout.log logs/nginx/error.log logs/nginx/access.log +chmod 644 logs/app/stderr.log logs/app/stdout.log logs/nginx/error.log logs/nginx/access.log +chmod 755 logs/nginx logs/app + echo -e "${YELLOW}=== Ginxsom Development Environment Restart ===${NC}" echo "Starting full restart sequence..." @@ -43,16 +66,28 @@ wait_for_stop() { # Step 1: Stop nginx echo -e "\n${YELLOW}1. Stopping nginx...${NC}" + +# First try to stop nginx gracefully using our config if pgrep -f "nginx.*${NGINX_CONFIG}" > /dev/null; then - echo "Found running nginx processes, stopping..." + echo "Found nginx processes with our config, stopping gracefully..." nginx -p . -c "${NGINX_CONFIG}" -s stop 2>/dev/null sleep 2 +fi + +# Kill any remaining nginx processes (including those on port 9001) +NGINX_PIDS=$(pgrep nginx) +if [ ! -z "$NGINX_PIDS" ]; then + echo "Found running nginx processes, stopping..." + echo "Nginx PIDs: $NGINX_PIDS" + # Try graceful stop first + sudo nginx -s stop 2>/dev/null || true + sleep 2 # Force kill any remaining nginx processes - NGINX_PIDS=$(pgrep -f "nginx.*${NGINX_CONFIG}") + NGINX_PIDS=$(pgrep nginx) if [ ! -z "$NGINX_PIDS" ]; then echo "Force killing remaining nginx processes: $NGINX_PIDS" - kill -9 $NGINX_PIDS 2>/dev/null + sudo kill -9 $NGINX_PIDS 2>/dev/null || true fi echo -e "${GREEN}nginx stopped${NC}" else @@ -103,30 +138,15 @@ fi echo -e "${GREEN}FastCGI cleanup complete${NC}" -# Step 3: Check if binary exists and is up to date -echo -e "\n${YELLOW}3. Checking FastCGI binary...${NC}" -if [ ! -f "$FCGI_BINARY" ]; then - echo -e "${RED}Error: FastCGI binary not found at $FCGI_BINARY${NC}" - echo "Building application..." - make - if [ $? -ne 0 ]; then - echo -e "${RED}Build failed! Cannot continue.${NC}" - exit 1 - fi -else - echo "FastCGI binary found: $FCGI_BINARY" - - # Check if source is newer than binary - if [ "src/main.c" -nt "$FCGI_BINARY" ] || [ "Makefile" -nt "$FCGI_BINARY" ]; then - echo "Source files are newer than binary, rebuilding..." - make - if [ $? -ne 0 ]; then - echo -e "${RED}Build failed! Cannot continue.${NC}" - exit 1 - fi - echo -e "${GREEN}Rebuild complete${NC}" - fi +# Step 3: Always rebuild FastCGI binary with clean build +echo -e "\n${YELLOW}3. Rebuilding FastCGI binary (clean build)...${NC}" +echo "Performing clean rebuild to ensure all changes are compiled..." +make clean && make +if [ $? -ne 0 ]; then + echo -e "${RED}Build failed! Cannot continue.${NC}" + exit 1 fi +echo -e "${GREEN}Clean rebuild complete${NC}" # Step 4: Start FastCGI echo -e "\n${YELLOW}4. Starting FastCGI application...${NC}" @@ -141,10 +161,14 @@ if ! command -v spawn-fcgi &> /dev/null; then exit 1 fi -# Start FastCGI application with stderr logging (no wrapper needed) -# Create stderr log with timestamp -echo "FastCGI starting at $(date)" > logs/fcgi-stderr.log -spawn-fcgi -s "$SOCKET_PATH" -M 666 -u "$USER" -g "$USER" -f "$FCGI_BINARY" -P "$PID_FILE" 2>>logs/fcgi-stderr.log +# Start FastCGI application with proper logging (daemonized but with redirected streams) +# Set debug environment variable for pubkey extraction diagnostics +echo "Setting GINX_DEBUG environment for pubkey extraction diagnostics" +export GINX_DEBUG=1 + +# Start FastCGI application with proper logging (daemonized but with redirected streams) +echo "FastCGI starting at $(date)" >> logs/app/stderr.log +spawn-fcgi -s "$SOCKET_PATH" -M 666 -u "$USER" -g "$USER" -f "$FCGI_BINARY" -P "$PID_FILE" 1>>logs/app/stdout.log 2>>logs/app/stderr.log if [ $? -eq 0 ] && [ -f "$PID_FILE" ]; then PID=$(cat "$PID_FILE") diff --git a/src/admin_api.c b/src/admin_api.c index 1e97513..ef66d65 100644 --- a/src/admin_api.c +++ b/src/admin_api.c @@ -10,7 +10,6 @@ #endif #include #include "ginxsom.h" -#include "../nostr_core_lib/nostr_core/request_validator.h" // Database path (consistent with main.c) #define DB_PATH "db/ginxsom.db" diff --git a/src/bud04.c b/src/bud04.c index 43886ec..895641b 100644 --- a/src/bud04.c +++ b/src/bud04.c @@ -12,7 +12,6 @@ #include #include #include "ginxsom.h" -#include "../nostr_core_lib/nostr_core/request_validator.h" // HTTP download response structure typedef struct { diff --git a/src/bud06.c b/src/bud06.c index 6c133e6..4307918 100644 --- a/src/bud06.c +++ b/src/bud06.c @@ -8,7 +8,6 @@ #include #include #include "ginxsom.h" -#include "../nostr_core_lib/nostr_core/request_validator.h" // BUD-06 X-Reason header constants #define XREASON_MISSING_SHA256 "Missing required X-SHA-256 header" diff --git a/src/bud09.c b/src/bud09.c index 59e8514..2a7ba79 100644 --- a/src/bud09.c +++ b/src/bud09.c @@ -10,7 +10,6 @@ #include #include #include "ginxsom.h" -#include "../nostr_core_lib/nostr_core/request_validator.h" // Database path (should match main.c) #define DB_PATH "db/ginxsom.db" diff --git a/src/ginxsom.h b/src/ginxsom.h index f7f1457..0a744b7 100644 --- a/src/ginxsom.h +++ b/src/ginxsom.h @@ -14,7 +14,6 @@ #include #include #include "../nostr_core_lib/cjson/cJSON.h" -#include "../nostr_core_lib/nostr_core/nostr_core.h" #ifdef __cplusplus extern "C" { @@ -43,8 +42,67 @@ void handle_head_request(const char* uri); ///////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////// -// NOTE: Old authentication functions removed - now handled by nostr_core_lib unified system -// Use nostr_validate_request() from request_validator.h for all authentication needs +// Request validation system - implemented in request_validator.c +// Functions implemented in src/request_validator.c + +// NOSTR result constants +#define NOSTR_SUCCESS 0 +#define NOSTR_ERROR_INVALID_JSON -1 +#define NOSTR_ERROR_MISSING_FIELD -2 +#define NOSTR_ERROR_INVALID_SIGNATURE -3 +#define NOSTR_ERROR_INVALID_PUBKEY -4 +#define NOSTR_ERROR_DATABASE -10 +#define NOSTR_ERROR_UNAUTHORIZED -11 +#define NOSTR_ERROR_MEMORY -12 + +// NIP-42 modes +typedef enum { + NIP42_MODE_DISABLED = 0, + NIP42_MODE_OPTIONAL = 1, + NIP42_MODE_REQUIRED = 2 +} nip42_mode_t; + +// Request validation types and enums (matching ginxsom usage) +typedef struct { + const char* operation; // Operation type ("upload", "delete", "list", "publish", "admin") + const char* auth_header; // Raw authorization header (optional) + cJSON* event; // Parsed NOSTR event for validation (optional) + const char* resource_hash; // Resource hash (SHA-256, optional) + const char* mime_type; // MIME type (optional) + long file_size; // File size (optional) + const char* relay_url; // Relay URL for NIP-42 validation (optional) + const char* challenge_id; // Challenge ID for NIP-42 verification (optional) + int nip42_mode; // NIP-42 mode: 0=disabled, 1=optional, 2=required + const char* client_ip; // Client IP address (optional) + void* app_context; // Application context (unused, for compatibility) +} nostr_request_t; + +typedef struct { + int valid; // 0 = invalid/denied, 1 = valid/allowed + int error_code; // NOSTR_SUCCESS or specific error code + char reason[256]; // Human-readable reason for denial/acceptance + char pubkey[65]; // Extracted pubkey from validated event (if available) +} nostr_request_result_t; + +// Challenge structure for NIP-42 +typedef struct { + char challenge_id[65]; + time_t expires_at; +} nostr_nip42_challenge_t; + +// Function declarations for nostr_core_lib functions used by ginxsom +int nostr_validate_event(cJSON* event); +int nostr_validate_event_structure(cJSON* event); +int nostr_verify_event_signature(cJSON* event); +int nostr_sha256(const unsigned char* data, size_t len, unsigned char* hash); +void nostr_bytes_to_hex(const unsigned char* bytes, size_t len, char* hex_out); +int nostr_crypto_init(void); + +int nostr_validate_request(const nostr_request_t* request, nostr_request_result_t* result); +int nostr_request_validator_init(const char* db_path, const char* app_name); +int nostr_auth_rules_enabled(void); +void nostr_request_validator_cleanup(void); +int nostr_request_validator_generate_nip42_challenge(void* challenge_struct, const char* client_ip); // Upload handling void handle_upload_request(void); diff --git a/src/main.c b/src/main.c index 5f21f9e..470f004 100644 --- a/src/main.c +++ b/src/main.c @@ -16,7 +16,6 @@ #include #include #include "ginxsom.h" -#include "../nostr_core_lib/nostr_core/request_validator.h" // Debug macros removed @@ -311,6 +310,9 @@ int run_interactive_setup(const char* config_path) { void send_error_response(int status_code, const char* error_type, const char* message, const char* details); void log_request(const char* method, const char* uri, const char* auth_status, int status_code); +// External validator function declarations +const char* nostr_request_validator_get_last_violation_type(void); + // NIP-42 function declarations void handle_auth_challenge_request(void); int get_nip42_mode_config(void); @@ -555,6 +557,7 @@ void send_error_response(int status_code, const char* error_type, const char* me switch (status_code) { case 400: status_text = "Bad Request"; break; case 401: status_text = "Unauthorized"; break; + case 403: status_text = "Forbidden"; break; case 409: status_text = "Conflict"; break; case 413: status_text = "Payload Too Large"; break; case 500: status_text = "Internal Server Error"; break; @@ -653,21 +656,41 @@ void handle_list_request(const char* pubkey) { int auth_result = nostr_validate_request(&request, &result); if (auth_result != NOSTR_SUCCESS || !result.valid) { + const char* violation_type = nostr_request_validator_get_last_violation_type(); + const char* error_type = "authentication_failed"; const char* message = "Invalid or expired authentication"; const char* details = result.reason[0] ? result.reason : "The provided Nostr event is invalid, expired, or does not authorize this operation"; - - // Provide more specific error messages based on the reason - if (strstr(result.reason, "whitelist")) { + int status_code = 401; // Default to 401 for authentication issues + + // Determine status code and error type based on violation type + if (strcmp(violation_type, "pubkey_blacklist") == 0) { + error_type = "access_denied"; + message = "Access denied by policy"; + details = "Public key blacklisted"; + status_code = 403; // Access control policy denial + } else if (strcmp(violation_type, "hash_blacklist") == 0) { + error_type = "access_denied"; + message = "Access denied by policy"; + details = "File hash blacklisted"; + status_code = 403; // Access control policy denial + } else if (strcmp(violation_type, "whitelist_violation") == 0) { error_type = "pubkey_not_whitelisted"; message = "Public key not authorized"; + details = "Public key not whitelisted for this operation"; + status_code = 403; // Access control policy denial + } else if (strstr(result.reason, "whitelist")) { + error_type = "pubkey_not_whitelisted"; + message = "Public key not authorized"; + status_code = 403; // Access control policy denial } else if (strstr(result.reason, "blacklist")) { error_type = "access_denied"; message = "Access denied by policy"; + status_code = 403; // Access control policy denial } - - send_error_response(401, error_type, message, details); - log_request("GET", "/list", "failed", 401); + + send_error_response(status_code, error_type, message, details); + log_request("GET", "/list", "failed", status_code); return; } auth_status = "authenticated"; @@ -820,25 +843,52 @@ void handle_delete_request(const char* sha256) { .app_context = NULL }; + // Debug: Print environment variable status + char* debug_flag = getenv("GINX_DEBUG"); + fprintf(stderr, "AUTH DEBUG: GINX_DEBUG=%s\n", debug_flag ? debug_flag : "NOT_SET"); + nostr_request_result_t result; int auth_result = nostr_validate_request(&request, &result); + + // Debug: Print auth result immediately after call + fprintf(stderr, "AUTH DEBUG: handle_upload_request - nostr_validate_request returned: %d, result.valid: %d\n", auth_result, result.valid); if (auth_result != NOSTR_SUCCESS || !result.valid) { + const char* violation_type = nostr_request_validator_get_last_violation_type(); + const char* error_type = "authentication_failed"; const char* message = "Invalid or expired authentication"; const char* details = result.reason[0] ? result.reason : "The provided Nostr event is invalid, expired, or does not authorize this operation"; - - // Provide more specific error messages based on the reason - if (strstr(result.reason, "whitelist")) { + int status_code = 401; // Default to 401 for authentication issues + + // Determine status code and error type based on violation type + if (strcmp(violation_type, "pubkey_blacklist") == 0) { + error_type = "access_denied"; + message = "Access denied by policy"; + details = "Public key blacklisted"; + status_code = 403; // Access control policy denial + } else if (strcmp(violation_type, "hash_blacklist") == 0) { + error_type = "access_denied"; + message = "Access denied by policy"; + details = "File hash blacklisted"; + status_code = 403; // Access control policy denial + } else if (strcmp(violation_type, "whitelist_violation") == 0) { error_type = "pubkey_not_whitelisted"; message = "Public key not authorized"; + details = "Public key not whitelisted for this operation"; + status_code = 403; // Access control policy denial + } else if (strstr(result.reason, "whitelist")) { + error_type = "pubkey_not_whitelisted"; + message = "Public key not authorized"; + status_code = 403; // Access control policy denial } else if (strstr(result.reason, "blacklist")) { error_type = "access_denied"; message = "Access denied by policy"; + status_code = 403; // Access control policy denial } - - send_error_response(401, error_type, message, details); - log_request("DELETE", "/delete", "failed", 401); + + send_error_response(status_code, error_type, message, details); + log_request("DELETE", "/delete", "failed", status_code); return; } @@ -1078,7 +1128,7 @@ void handle_upload_request(void) { // Check if authentication rules are enabled using nostr_core_lib system int auth_required = nostr_auth_rules_enabled(); fprintf(stderr, "AUTH: auth_rules_enabled = %d, auth_header present: %s\r\n", auth_required, auth_header ? "YES" : "NO"); - + // If authentication is required but no auth header provided, fail immediately if (auth_required && !auth_header) { free(file_data); @@ -1087,10 +1137,17 @@ void handle_upload_request(void) { log_request("PUT", "/upload", "missing_auth", 401); return; } - - // Use new unified request validation system + + // If auth rules are completely disabled, skip all validation and allow upload + if (!auth_required) { + fprintf(stderr, "AUTH: Authentication rules disabled - skipping all validation and allowing upload\n"); + // Skip validation and proceed to file processing + goto process_file_upload; + } + + // Use new unified request validation system (only when auth is required) fprintf(stderr, "AUTH: About to perform authentication validation\r\n"); - + // Create request structure for validation nostr_request_t request = { .operation = "upload", @@ -1102,60 +1159,109 @@ void handle_upload_request(void) { .client_ip = getenv("REMOTE_ADDR"), .app_context = NULL }; - + nostr_request_result_t result; + fprintf(stderr, "UPLOAD_HANDLER: About to call nostr_validate_request for operation='%s'\r\n", request.operation ? request.operation : "NULL"); int auth_result = nostr_validate_request(&request, &result); - + fprintf(stderr, "UPLOAD_HANDLER: nostr_validate_request returned auth_result=%d, result.valid=%d\r\n", auth_result, result.valid); + // Write debug output to a file for debugging FILE* debug_file = fopen("debug_auth.log", "a"); if (debug_file) { fprintf(debug_file, "AUTH: nostr_validate_request returned: %d, valid: %d, reason: %s\n", auth_result, result.valid, result.reason); - fprintf(debug_file, "AUTH: pubkey extracted: '%s'\n", result.pubkey); + + // Validate pubkey before printing to prevent corruption display + if (result.pubkey[0] != '\0' && strlen(result.pubkey) == 64) { + // Additional validation: ensure pubkey contains only hex characters + int valid_hex = 1; + for (int i = 0; i < 64; i++) { + char c = result.pubkey[i]; + if (!((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'))) { + valid_hex = 0; + break; + } + } + if (valid_hex) { + fprintf(debug_file, "AUTH: pubkey extracted: '%s'\n", result.pubkey); + } else { + fprintf(debug_file, "AUTH: pubkey extracted: \n"); + } + } else { + fprintf(debug_file, "AUTH: pubkey extracted: \n"); + } + fprintf(debug_file, "AUTH: resource_hash: '%s'\n", request.resource_hash ? request.resource_hash : "NULL"); fprintf(debug_file, "AUTH: operation: '%s'\n", request.operation ? request.operation : "NULL"); fprintf(debug_file, "AUTH: auth_header present: %s\n", auth_header ? "YES" : "NO"); fclose(debug_file); } - // If auth header is provided, validate it regardless of require_auth setting - if (auth_header && (auth_result != NOSTR_SUCCESS || !result.valid)) { + // Authentication failed - reject the request + if (auth_result != NOSTR_SUCCESS || !result.valid) { free(file_data); - + + // Get violation type from validator for precise status code mapping + const char* violation_type = nostr_request_validator_get_last_violation_type(); + // Use the detailed reason from the authentication system const char* error_type = "authentication_failed"; const char* message = "Authentication failed"; const char* details = result.reason[0] ? result.reason : "The request failed authentication"; - - // Provide more specific error types based on the reason content - if (strstr(result.reason, "whitelist")) { + int status_code = 401; // Default to 401 for authentication issues + + // Determine status code and error type based on violation type + if (strcmp(violation_type, "pubkey_blacklist") == 0) { + error_type = "access_denied"; + message = "Access denied by policy"; + details = "Public key blacklisted"; + status_code = 403; // Access control policy denial + } else if (strcmp(violation_type, "hash_blacklist") == 0) { + error_type = "access_denied"; + message = "Access denied by policy"; + details = "File hash blacklisted"; + status_code = 403; // Access control policy denial + } else if (strcmp(violation_type, "whitelist_violation") == 0) { error_type = "pubkey_not_whitelisted"; message = "Public key not authorized"; + details = "Public key not whitelisted for this operation"; + status_code = 403; // Access control policy denial + } else if (strstr(result.reason, "whitelist")) { + error_type = "pubkey_not_whitelisted"; + message = "Public key not authorized"; + status_code = 403; // Access control policy denial } else if (strstr(result.reason, "blacklist")) { error_type = "access_denied"; message = "Access denied by policy"; + status_code = 403; // Access control policy denial } else if (strstr(result.reason, "expired")) { error_type = "event_expired"; message = "Authentication event expired"; + status_code = 401; // Authentication format/validity issue } else if (strstr(result.reason, "signature")) { error_type = "invalid_signature"; message = "Invalid cryptographic signature"; + status_code = 401; // Authentication format/validity issue } else if (strstr(result.reason, "size")) { error_type = "file_too_large"; message = "File size exceeds policy limits"; + status_code = 403; // Access control policy denial } else if (strstr(result.reason, "MIME") || strstr(result.reason, "mime")) { error_type = "unsupported_type"; message = "File type not allowed by policy"; + status_code = 403; // Access control policy denial } else if (strstr(result.reason, "hash")) { error_type = "hash_blocked"; message = "File hash blocked by policy"; + status_code = 403; // Access control policy denial } else if (strstr(result.reason, "format") || strstr(result.reason, "invalid")) { error_type = "invalid_format"; message = "Invalid authorization format"; + status_code = 401; // Authentication format/validity issue } - - send_error_response(401, error_type, message, details); - log_request("PUT", "/upload", "auth_failed", 401); + + send_error_response(status_code, error_type, message, details); + log_request("PUT", "/upload", "auth_failed", status_code); return; } @@ -1169,6 +1275,7 @@ void handle_upload_request(void) { + process_file_upload: // Get dimensions from in-memory buffer before saving file int width = 0, height = 0; nip94_get_dimensions(file_data, content_length, content_type, &width, &height); @@ -1391,8 +1498,6 @@ void handle_auth_challenge_request(void) { int main(void) { - fprintf(stderr, "STARTUP: FastCGI application starting up\r\n"); - fflush(stderr); // Initialize server configuration and identity // Try file-based config first, then fall back to database config @@ -1431,7 +1536,9 @@ int main(void) { // Initialize request validator system fprintf(stderr, "STARTUP: Initializing request validator system...\r\n"); - if (nostr_request_validator_init(DB_PATH, "ginxsom") != NOSTR_SUCCESS) { + int validator_init_result = nostr_request_validator_init(DB_PATH, "ginxsom"); + fprintf(stderr, "MAIN: validator init return code: %d\r\n", validator_init_result); + if (validator_init_result != NOSTR_SUCCESS) { fprintf(stderr, "FATAL ERROR: Failed to initialize request validator system\r\n"); return 1; } diff --git a/src/request_validator.c b/src/request_validator.c new file mode 100644 index 0000000..2f3869b --- /dev/null +++ b/src/request_validator.c @@ -0,0 +1,840 @@ +/* + * Ginxsom Request Validator - Integrated Authentication System + * + * Provides complete request validation including: + * - Protocol validation via nostr_core_lib (signatures, pubkey extraction, NIP-42) + * - Database-driven authorization rules (whitelist, blacklist, size limits) + * - Memory caching for performance + * - SQLite integration for ginxsom-specific needs + */ + +#define _GNU_SOURCE +#include +#include +#include +#include +#include +#include +#include "../nostr_core_lib/nostr_core/nostr_common.h" +#include "../nostr_core_lib/nostr_core/nip001.h" +#include "../nostr_core_lib/nostr_core/nip042.h" +#include "../nostr_core_lib/nostr_core/utils.h" +#include "../nostr_core_lib/cjson/cJSON.h" +#include "ginxsom.h" + +// Additional error codes for ginxsom-specific functionality +#define NOSTR_ERROR_CRYPTO_INIT -100 +#define NOSTR_ERROR_AUTH_REQUIRED -101 +#define NOSTR_ERROR_NIP42_DISABLED -102 +#define NOSTR_ERROR_EVENT_EXPIRED -103 + +// Database path (consistent with main.c) +#define DB_PATH "db/ginxsom.db" + +//============================================================================= +// DATA STRUCTURES +//============================================================================= + +// Cached configuration structure +typedef struct { + int auth_required; // Whether authentication is required + long max_file_size; // Maximum file size in bytes + int admin_enabled; // Whether admin interface is enabled + char admin_pubkey[65]; // Admin public key + int nip42_mode; // NIP-42 authentication mode + time_t cache_expires; // When cache expires + int cache_valid; // Whether cache is valid +} auth_config_cache_t; + +//============================================================================= +// GLOBAL STATE +//============================================================================= + +static auth_config_cache_t g_auth_cache = {0}; +static int g_validator_initialized = 0; + +// Last rule violation details for status code mapping +struct { + char violation_type[100]; // "pubkey_blacklist", "hash_blacklist", "whitelist_violation", etc. + char reason[500]; // specific reason string +} g_last_rule_violation = {0}; + +/** + * Helper function for consistent debug logging to our debug.log file + */ +static void validator_debug_log(const char* message) { + FILE* debug_log = fopen("logs/app/debug.log", "a"); + if (debug_log) { + fprintf(debug_log, "%ld %s", (long)time(NULL), message); + fclose(debug_log); + } +} + +//============================================================================= +// FORWARD DECLARATIONS +//============================================================================= + +static int reload_auth_config(void); +static int parse_authorization_header(const char* auth_header, char* event_json, size_t json_size); +static int extract_pubkey_from_event(cJSON* event, char* pubkey_buffer, size_t buffer_size); +static int validate_blossom_event(cJSON* event, const char* expected_hash, const char* method); +static int validate_nip42_event(cJSON* event, const char* relay_url, const char* challenge_id); +static int check_database_auth_rules(const char* pubkey, const char* operation, const char* resource_hash); +void nostr_request_validator_clear_violation(void); + +//============================================================================= +// MAIN API FUNCTIONS +//============================================================================= + +/** + * Initialize the ginxsom request validator system + */ +int nostr_request_validator_init(const char* db_path, const char* app_name) { + // Mark db_path as unused to suppress warning - it's for future use + (void)db_path; + (void)app_name; + + if (g_validator_initialized) { + return NOSTR_SUCCESS; // Already initialized + } + + // Initialize nostr_core_lib if not already done + if (nostr_crypto_init() != NOSTR_SUCCESS) { + validator_debug_log("VALIDATOR: Failed to initialize nostr crypto system\n"); + return NOSTR_ERROR_CRYPTO_INIT; + } + + // Load initial configuration from database + int result = reload_auth_config(); + if (result != NOSTR_SUCCESS) { + validator_debug_log("VALIDATOR: Failed to load configuration from database\n"); + return result; + } + + g_validator_initialized = 1; + validator_debug_log("VALIDATOR: Request validator initialized successfully\n"); + return NOSTR_SUCCESS; +} + +/** + * Check if authentication rules are enabled + */ +int nostr_auth_rules_enabled(void) { + // Reload config if cache expired + if (!g_auth_cache.cache_valid || time(NULL) > g_auth_cache.cache_expires) { + reload_auth_config(); + } + + return g_auth_cache.auth_required; +} + +/** + * Main request validation function - this is the primary entry point + */ +int nostr_validate_request(const nostr_request_t* request, nostr_request_result_t* result) { + // Clear previous violation details + nostr_request_validator_clear_violation(); + + // Simple test debug log + validator_debug_log("VALIDATOR_DEBUG: nostr_validate_request() was called\n"); + validator_debug_log("VALIDATOR_DEBUG: Starting request validation\n"); + + if (!g_validator_initialized) { + validator_debug_log("VALIDATOR_DEBUG: STEP 1 FAILED - System not initialized\n"); + return NOSTR_ERROR_INVALID_INPUT; + } + validator_debug_log("VALIDATOR_DEBUG: STEP 1 PASSED - System initialized\n"); + + if (!request || !result) { + validator_debug_log("VALIDATOR_DEBUG: STEP 2 FAILED - Invalid input parameters\n"); + return NOSTR_ERROR_INVALID_INPUT; + } + validator_debug_log("VALIDATOR_DEBUG: STEP 2 PASSED - Input parameters valid\n"); + + // Initialize result structure + memset(result, 0, sizeof(nostr_request_result_t)); + result->valid = 1; // Default allow + result->error_code = NOSTR_SUCCESS; + strcpy(result->reason, "No validation required"); + + // Reload config if needed + if (!g_auth_cache.cache_valid || time(NULL) > g_auth_cache.cache_expires) { + validator_debug_log("VALIDATOR_DEBUG: Reloading configuration cache\n"); + reload_auth_config(); + } + char config_msg[256]; + sprintf(config_msg, "VALIDATOR_DEBUG: STEP 3 PASSED - Configuration loaded (auth_required=%d)\n", g_auth_cache.auth_required); + validator_debug_log(config_msg); + + // If no auth header provided and auth not required, allow + if (!request->auth_header) { + if (!g_auth_cache.auth_required) { + validator_debug_log("VALIDATOR_DEBUG: STEP 4 PASSED - No auth required, allowing request\n"); + strcpy(result->reason, "Authentication not required"); + return NOSTR_SUCCESS; + } else { + validator_debug_log("VALIDATOR_DEBUG: STEP 4 FAILED - Auth required but no header provided\n"); + result->valid = 0; + result->error_code = NOSTR_ERROR_AUTH_REQUIRED; + strcpy(result->reason, "Authentication required but not provided"); + return NOSTR_SUCCESS; + } + } + char header_msg[110]; + sprintf(header_msg, "VALIDATOR_DEBUG: STEP 4 PASSED - Auth header provided: %.50s...\n", request->auth_header); + validator_debug_log(header_msg); + + // Parse authorization header + char event_json[4096]; + int parse_result = parse_authorization_header(request->auth_header, event_json, sizeof(event_json)); + if (parse_result != NOSTR_SUCCESS) { + char parse_msg[256]; + sprintf(parse_msg, "VALIDATOR_DEBUG: STEP 5 FAILED - Failed to parse authorization header (error=%d)\n", parse_result); + validator_debug_log(parse_msg); + result->valid = 0; + result->error_code = parse_result; + strcpy(result->reason, "Failed to parse authorization header"); + return NOSTR_SUCCESS; + } + char parse_success_msg[512]; + sprintf(parse_success_msg, "VALIDATOR_DEBUG: STEP 5 PASSED - Authorization header parsed, JSON: %.100s...\n", event_json); + validator_debug_log(parse_success_msg); + + // Parse JSON event + cJSON* event = cJSON_Parse(event_json); + if (!event) { + validator_debug_log("VALIDATOR_DEBUG: STEP 6 FAILED - Invalid JSON in authorization\n"); + result->valid = 0; + result->error_code = NOSTR_ERROR_EVENT_INVALID_CONTENT; + strcpy(result->reason, "Invalid JSON in authorization"); + return NOSTR_SUCCESS; + } + validator_debug_log("VALIDATOR_DEBUG: STEP 6 PASSED - JSON parsed successfully\n"); + + // Validate NOSTR event structure and signature using nostr_core_lib + int validation_result = nostr_validate_event(event); + if (validation_result != NOSTR_SUCCESS) { + char validation_msg[256]; + sprintf(validation_msg, "VALIDATOR_DEBUG: STEP 7 FAILED - NOSTR event validation failed (error=%d)\n", validation_result); + validator_debug_log(validation_msg); + result->valid = 0; + result->error_code = validation_result; + strcpy(result->reason, "NOSTR event validation failed"); + cJSON_Delete(event); + return NOSTR_SUCCESS; + } + validator_debug_log("VALIDATOR_DEBUG: STEP 7 PASSED - NOSTR event validation succeeded\n"); + + // Extract pubkey for authorization checks + char extracted_pubkey[65] = {0}; + int extract_result = extract_pubkey_from_event(event, extracted_pubkey, sizeof(extracted_pubkey)); + if (extract_result != NOSTR_SUCCESS) { + char extract_msg[256]; + sprintf(extract_msg, "VALIDATOR_DEBUG: STEP 8 FAILED - Failed to extract pubkey from event (error=%d)\n", extract_result); + validator_debug_log(extract_msg); + result->valid = 0; + result->error_code = extract_result; + strcpy(result->reason, "Failed to extract pubkey from event"); + cJSON_Delete(event); + return NOSTR_SUCCESS; + } + char extract_success_msg[256]; + sprintf(extract_success_msg, "VALIDATOR_DEBUG: STEP 8 PASSED - Extracted pubkey: %s\n", extracted_pubkey); + validator_debug_log(extract_success_msg); + + // Get event kind to determine authentication method + cJSON* kind_json = cJSON_GetObjectItem(event, "kind"); + int event_kind = 0; + if (kind_json && cJSON_IsNumber(kind_json)) { + event_kind = cJSON_GetNumberValue(kind_json); + } + char kind_msg[256]; + sprintf(kind_msg, "VALIDATOR_DEBUG: STEP 9 PASSED - Event kind: %d\n", event_kind); + validator_debug_log(kind_msg); + + // Handle different authentication methods + if (event_kind == NOSTR_NIP42_AUTH_EVENT_KIND) { + char nip42_msg[256]; + sprintf(nip42_msg, "VALIDATOR_DEBUG: STEP 10 - Processing NIP-42 authentication (kind %d)\n", NOSTR_NIP42_AUTH_EVENT_KIND); + validator_debug_log(nip42_msg); + + // NIP-42 authentication (kind 22242) + if (request->nip42_mode == 0) { + validator_debug_log("VALIDATOR_DEBUG: STEP 10 FAILED - NIP-42 authentication is disabled\n"); + result->valid = 0; + result->error_code = NOSTR_ERROR_NIP42_DISABLED; + strcpy(result->reason, "NIP-42 authentication is disabled"); + cJSON_Delete(event); + return NOSTR_SUCCESS; + } + + if (!request->relay_url || !request->challenge_id) { + validator_debug_log("VALIDATOR_DEBUG: STEP 10 FAILED - NIP-42 requires relay_url and challenge_id\n"); + result->valid = 0; + result->error_code = NOSTR_ERROR_NIP42_NOT_CONFIGURED; + strcpy(result->reason, "NIP-42 authentication requires relay_url and challenge_id"); + cJSON_Delete(event); + return NOSTR_SUCCESS; + } + + int nip42_result = validate_nip42_event(event, request->relay_url, request->challenge_id); + if (nip42_result != NOSTR_SUCCESS) { + char nip42_fail_msg[256]; + sprintf(nip42_fail_msg, "VALIDATOR_DEBUG: STEP 10 FAILED - NIP-42 validation failed (error=%d)\n", nip42_result); + validator_debug_log(nip42_fail_msg); + result->valid = 0; + result->error_code = nip42_result; + strcpy(result->reason, "NIP-42 authentication failed"); + cJSON_Delete(event); + return NOSTR_SUCCESS; + } + validator_debug_log("VALIDATOR_DEBUG: STEP 10 PASSED - NIP-42 authentication succeeded\n"); + strcpy(result->reason, "NIP-42 authentication passed"); + + } else if (event_kind == 24242) { + validator_debug_log("VALIDATOR_DEBUG: STEP 10 - Processing Blossom authentication (kind 24242)\n"); + // Blossom protocol authentication (kind 24242) + if (request->operation && request->resource_hash) { + char blossom_valid_msg[512]; + sprintf(blossom_valid_msg, "VALIDATOR_DEBUG: Validating Blossom event for operation='%s', hash='%s'\n", + request->operation ? request->operation : "NULL", + request->resource_hash ? request->resource_hash : "NULL"); + validator_debug_log(blossom_valid_msg); + + int blossom_result = validate_blossom_event(event, request->resource_hash, request->operation); + if (blossom_result != NOSTR_SUCCESS) { + char blossom_fail_msg[256]; + sprintf(blossom_fail_msg, "VALIDATOR_DEBUG: STEP 10 FAILED - Blossom validation failed (error=%d)\n", blossom_result); + validator_debug_log(blossom_fail_msg); + result->valid = 0; + result->error_code = blossom_result; + strcpy(result->reason, "Blossom event does not authorize this operation"); + cJSON_Delete(event); + return NOSTR_SUCCESS; + } + } else { + validator_debug_log("VALIDATOR_DEBUG: Skipping Blossom validation (no operation/hash specified)\n"); + } + validator_debug_log("VALIDATOR_DEBUG: STEP 10 PASSED - Blossom authentication succeeded\n"); + strcpy(result->reason, "Blossom authentication passed"); + + } else { + char unsupported_msg[256]; + sprintf(unsupported_msg, "VALIDATOR_DEBUG: STEP 10 FAILED - Unsupported event kind: %d\n", event_kind); + validator_debug_log(unsupported_msg); + result->valid = 0; + result->error_code = NOSTR_ERROR_EVENT_INVALID_KIND; + strcpy(result->reason, "Unsupported event kind for authentication"); + cJSON_Delete(event); + return NOSTR_SUCCESS; + } + + // Copy validated pubkey to result + if (strlen(extracted_pubkey) == 64) { + strncpy(result->pubkey, extracted_pubkey, 64); + result->pubkey[64] = '\0'; + validator_debug_log("VALIDATOR_DEBUG: STEP 11 PASSED - Pubkey copied to result\n"); + } else { + char pubkey_warning_msg[256]; + sprintf(pubkey_warning_msg, "VALIDATOR_DEBUG: STEP 11 WARNING - Invalid pubkey length: %zu\n", strlen(extracted_pubkey)); + validator_debug_log(pubkey_warning_msg); + } + + cJSON_Delete(event); + + // STEP 12 PASSED: Protocol validation complete - continue to database rule evaluation + validator_debug_log("VALIDATOR_DEBUG: STEP 12 PASSED - Protocol validation complete, proceeding to rule evaluation\n"); + + // Check if auth rules are enabled + if (!g_auth_cache.auth_required) { + validator_debug_log("VALIDATOR_DEBUG: STEP 13 PASSED - Auth rules disabled, allowing request\n"); + result->valid = 1; + result->error_code = NOSTR_SUCCESS; + strcpy(result->reason, "Authentication rules disabled"); + return NOSTR_SUCCESS; + } + validator_debug_log("VALIDATOR_DEBUG: STEP 13 PASSED - Auth rules enabled, checking database rules\n"); + + // Check database rules for authorization + int rules_result = check_database_auth_rules(extracted_pubkey, request->operation, request->resource_hash); + if (rules_result != NOSTR_SUCCESS) { + validator_debug_log("VALIDATOR_DEBUG: STEP 14 FAILED - Database rules denied request\n"); + result->valid = 0; + result->error_code = rules_result; + // Determine specific failure reason based on rules evaluation + if (rules_result == NOSTR_ERROR_AUTH_REQUIRED) { + // This can be pubkey blacklist or whitelist violation - set generic message + // The specific reason will be detailed in the database check function + strcpy(result->reason, "Request denied by authorization rules"); + } else { + strcpy(result->reason, "Authorization error"); + } + return NOSTR_SUCCESS; + } + validator_debug_log("VALIDATOR_DEBUG: STEP 14 PASSED - Database rules allow request\n"); + + // All validations passed + result->valid = 1; + result->error_code = NOSTR_SUCCESS; + validator_debug_log("VALIDATOR_DEBUG: STEP 15 PASSED - All validations complete, request ALLOWED\n"); + return NOSTR_SUCCESS; +} + +/** + * Generate NIP-42 challenge for clients + */ +int nostr_request_validator_generate_nip42_challenge(void* challenge_struct, const char* client_ip) { + // Mark client_ip as unused to suppress warning - it's for future enhancement + (void)client_ip; + + // Use nostr_core_lib NIP-42 functionality + char challenge_id[65]; + int result = nostr_nip42_generate_challenge(challenge_id, 32); + if (result != NOSTR_SUCCESS) { + return result; + } + + // Fill challenge structure (assuming it's a compatible structure) + // This is a simplified implementation - adjust based on actual structure needs + if (challenge_struct) { + // Cast to appropriate structure and fill fields + // For now, just return success + } + + return NOSTR_SUCCESS; +} + +/** + * Get the last rule violation type for status code mapping + */ +const char* nostr_request_validator_get_last_violation_type(void) { + return g_last_rule_violation.violation_type; +} + +/** + * Clear the last rule violation details + */ +void nostr_request_validator_clear_violation(void) { + memset(&g_last_rule_violation, 0, sizeof(g_last_rule_violation)); +} + +/** + * Cleanup request validator resources + */ +void nostr_request_validator_cleanup(void) { + g_validator_initialized = 0; + memset(&g_auth_cache, 0, sizeof(g_auth_cache)); + nostr_request_validator_clear_violation(); +} + +//============================================================================= +// HELPER FUNCTIONS +//============================================================================= + +/** + * Reload authentication configuration from database + */ +static int reload_auth_config(void) { + sqlite3* db = NULL; + sqlite3_stmt* stmt = NULL; + int rc; + + // Clear cache + memset(&g_auth_cache, 0, sizeof(g_auth_cache)); + + // Open database + rc = sqlite3_open_v2(DB_PATH, &db, SQLITE_OPEN_READONLY, NULL); + if (rc != SQLITE_OK) { + validator_debug_log("VALIDATOR: Could not open database\n"); + // Use defaults + g_auth_cache.auth_required = 0; + g_auth_cache.max_file_size = 104857600; // 100MB + g_auth_cache.admin_enabled = 0; + g_auth_cache.nip42_mode = 1; // Optional + g_auth_cache.cache_expires = time(NULL) + 300; // 5 minutes + g_auth_cache.cache_valid = 1; + return NOSTR_SUCCESS; + } + + // Load configuration values from server_config table + const char* server_sql = "SELECT key, value FROM server_config WHERE key IN ('require_auth', 'max_file_size', 'admin_enabled', 'admin_pubkey')"; + rc = sqlite3_prepare_v2(db, server_sql, -1, &stmt, NULL); + + if (rc == SQLITE_OK) { + while (sqlite3_step(stmt) == SQLITE_ROW) { + const char* key = (const char*)sqlite3_column_text(stmt, 0); + const char* value = (const char*)sqlite3_column_text(stmt, 1); + + if (!key || !value) continue; + + if (strcmp(key, "require_auth") == 0) { + g_auth_cache.auth_required = (strcmp(value, "true") == 0) ? 1 : 0; + } else if (strcmp(key, "max_file_size") == 0) { + g_auth_cache.max_file_size = atol(value); + } else if (strcmp(key, "admin_enabled") == 0) { + g_auth_cache.admin_enabled = (strcmp(value, "true") == 0) ? 1 : 0; + } else if (strcmp(key, "admin_pubkey") == 0) { + strncpy(g_auth_cache.admin_pubkey, value, sizeof(g_auth_cache.admin_pubkey) - 1); + } + } + sqlite3_finalize(stmt); + } + + // Load auth-specific configuration from auth_config table + const char* auth_sql = "SELECT key, value FROM auth_config WHERE key IN ('auth_rules_enabled', 'require_nip42_auth')"; + rc = sqlite3_prepare_v2(db, auth_sql, -1, &stmt, NULL); + + if (rc == SQLITE_OK) { + while (sqlite3_step(stmt) == SQLITE_ROW) { + const char* key = (const char*)sqlite3_column_text(stmt, 0); + const char* value = (const char*)sqlite3_column_text(stmt, 1); + + if (!key || !value) continue; + + if (strcmp(key, "auth_rules_enabled") == 0) { + // Override auth_required with auth_rules_enabled if present + g_auth_cache.auth_required = (strcmp(value, "true") == 0) ? 1 : 0; + } else if (strcmp(key, "require_nip42_auth") == 0) { + if (strcmp(value, "false") == 0) { + g_auth_cache.nip42_mode = 0; + } else if (strcmp(value, "required") == 0) { + g_auth_cache.nip42_mode = 2; + } else { + g_auth_cache.nip42_mode = 1; // Optional + } + } + } + sqlite3_finalize(stmt); + } + + sqlite3_close(db); + + // Set cache expiration (5 minutes from now) + g_auth_cache.cache_expires = time(NULL) + 300; + g_auth_cache.cache_valid = 1; + + // Set defaults for missing values + if (g_auth_cache.max_file_size == 0) { + g_auth_cache.max_file_size = 104857600; // 100MB + } + + // Note: This is the final debug statement, no need to log it to our debug file as it's just informational + fprintf(stderr, "VALIDATOR: Configuration loaded - auth_required: %d, max_file_size: %ld, nip42_mode: %d\n", + g_auth_cache.auth_required, g_auth_cache.max_file_size, g_auth_cache.nip42_mode); + + return NOSTR_SUCCESS; +} + +/** + * Parse NOSTR authorization header (base64 decode) + */ +static int parse_authorization_header(const char* auth_header, char* event_json, size_t json_size) { + if (!auth_header || !event_json) { + return NOSTR_ERROR_INVALID_INPUT; + } + + // Check for "Nostr " prefix (case-insensitive) + const char* prefix = "nostr "; + size_t prefix_len = strlen(prefix); + + if (strncasecmp(auth_header, prefix, prefix_len) != 0) { + return NOSTR_ERROR_INVALID_INPUT; + } + + // Extract base64 encoded event after "Nostr " + const char* base64_event = auth_header + prefix_len; + + // Decode base64 to JSON using nostr_core_lib base64 decode + unsigned char decoded_buffer[4096]; + size_t decoded_len = base64_decode(base64_event, decoded_buffer); + + if (decoded_len == 0 || decoded_len >= json_size) { + return NOSTR_ERROR_INVALID_INPUT; + } + + // Copy decoded JSON to output buffer + memcpy(event_json, decoded_buffer, decoded_len); + event_json[decoded_len] = '\0'; + + return NOSTR_SUCCESS; +} + +/** + * Extract pubkey from validated NOSTR event + */ +static int extract_pubkey_from_event(cJSON* event, char* pubkey_buffer, size_t buffer_size) { + if (!event || !pubkey_buffer || buffer_size < 65) { + return NOSTR_ERROR_INVALID_INPUT; + } + + // Initialize buffer to prevent corruption + memset(pubkey_buffer, 0, buffer_size); + + cJSON* pubkey_json = cJSON_GetObjectItem(event, "pubkey"); + if (!pubkey_json || !cJSON_IsString(pubkey_json)) { + return NOSTR_ERROR_EVENT_INVALID_PUBKEY; + } + + const char* pubkey = cJSON_GetStringValue(pubkey_json); + if (!pubkey) { + return NOSTR_ERROR_EVENT_INVALID_PUBKEY; + } + + // Check the raw pubkey string before validation + size_t pubkey_len = strlen(pubkey); + if (pubkey_len != 64) { + return NOSTR_ERROR_EVENT_INVALID_PUBKEY; + } + + // Validate that pubkey contains only hex characters before copying + for (int i = 0; i < 64; i++) { + char c = pubkey[i]; + if (!((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'))) { + return NOSTR_ERROR_EVENT_INVALID_PUBKEY; + } + } + + // Safe copy with explicit length and null termination + memcpy(pubkey_buffer, pubkey, 64); + pubkey_buffer[64] = '\0'; + + return NOSTR_SUCCESS; +} + +/** + * Validate Blossom protocol event (kind 24242) + */ +static int validate_blossom_event(cJSON* event, const char* expected_hash, const char* method) { + if (!event) { + return NOSTR_ERROR_INVALID_INPUT; + } + + // Check event kind (must be 24242 for Blossom operations) + cJSON* kind_json = cJSON_GetObjectItem(event, "kind"); + if (!kind_json || !cJSON_IsNumber(kind_json)) { + return NOSTR_ERROR_EVENT_INVALID_CONTENT; + } + + int kind = cJSON_GetNumberValue(kind_json); + if (kind != 24242) { + return NOSTR_ERROR_EVENT_INVALID_CONTENT; + } + + // Look for required tags if method and hash are specified + if (method || expected_hash) { + cJSON* tags = cJSON_GetObjectItem(event, "tags"); + if (!tags || !cJSON_IsArray(tags)) { + return NOSTR_ERROR_EVENT_INVALID_CONTENT; + } + + int found_method = (method == NULL); + int found_hash = (expected_hash == NULL); + time_t expiration = 0; + + cJSON* tag = NULL; + cJSON_ArrayForEach(tag, tags) { + if (!cJSON_IsArray(tag)) continue; + + cJSON* tag_name = cJSON_GetArrayItem(tag, 0); + if (!tag_name || !cJSON_IsString(tag_name)) continue; + + const char* tag_name_str = cJSON_GetStringValue(tag_name); + + if (strcmp(tag_name_str, "t") == 0 && method) { + cJSON* method_value = cJSON_GetArrayItem(tag, 1); + if (method_value && cJSON_IsString(method_value)) { + const char* event_method = cJSON_GetStringValue(method_value); + if (strcmp(event_method, method) == 0) { + found_method = 1; + } + } + } else if (strcmp(tag_name_str, "x") == 0 && expected_hash) { + cJSON* hash_value = cJSON_GetArrayItem(tag, 1); + if (hash_value && cJSON_IsString(hash_value)) { + const char* event_hash = cJSON_GetStringValue(hash_value); + if (strcmp(event_hash, expected_hash) == 0) { + found_hash = 1; + } + } + } else if (strcmp(tag_name_str, "expiration") == 0) { + cJSON* exp_value = cJSON_GetArrayItem(tag, 1); + if (exp_value && cJSON_IsString(exp_value)) { + expiration = (time_t)atol(cJSON_GetStringValue(exp_value)); + } + } + } + + if (!found_method || !found_hash) { + return NOSTR_ERROR_EVENT_INVALID_CONTENT; + } + + // Check expiration + time_t now = time(NULL); + if (expiration > 0 && now > expiration) { + return NOSTR_ERROR_EVENT_EXPIRED; + } + } + + return NOSTR_SUCCESS; +} + +/** + * Check database authentication rules for the request + * Implements the 6-step rule evaluation engine from AUTH_API.md + */ +static int check_database_auth_rules(const char* pubkey, const char* operation, const char* resource_hash) { + sqlite3* db = NULL; + sqlite3_stmt* stmt = NULL; + int rc; + + if (!pubkey) { + validator_debug_log("VALIDATOR_DEBUG: RULES ENGINE - Missing pubkey for rule evaluation\n"); + return NOSTR_ERROR_INVALID_INPUT; + } + + char rules_msg[256]; + sprintf(rules_msg, "VALIDATOR_DEBUG: RULES ENGINE - Checking rules for pubkey=%.32s..., operation=%s\n", + pubkey, operation ? operation : "NULL"); + validator_debug_log(rules_msg); + + // Open database + rc = sqlite3_open_v2(DB_PATH, &db, SQLITE_OPEN_READONLY, NULL); + if (rc != SQLITE_OK) { + validator_debug_log("VALIDATOR_DEBUG: RULES ENGINE - Failed to open database\n"); + return NOSTR_SUCCESS; // Default allow on DB error + } + + // Step 1: Check pubkey blacklist (highest priority) + const char* blacklist_sql = "SELECT rule_type, description FROM auth_rules WHERE rule_type = 'pubkey_blacklist' AND rule_target = ? AND operation = ? AND enabled = 1 ORDER BY priority LIMIT 1"; + rc = sqlite3_prepare_v2(db, blacklist_sql, -1, &stmt, NULL); + if (rc == SQLITE_OK) { + sqlite3_bind_text(stmt, 1, pubkey, -1, SQLITE_STATIC); + sqlite3_bind_text(stmt, 2, operation ? operation : "", -1, SQLITE_STATIC); + + if (sqlite3_step(stmt) == SQLITE_ROW) { + const char* description = (const char*)sqlite3_column_text(stmt, 1); + validator_debug_log("VALIDATOR_DEBUG: RULES ENGINE - STEP 1 FAILED - Pubkey blacklisted\n"); + char blacklist_msg[256]; + sprintf(blacklist_msg, "VALIDATOR_DEBUG: RULES ENGINE - Blacklist rule matched: %s\n", description ? description : "Unknown"); + validator_debug_log(blacklist_msg); + + // Set specific violation details for status code mapping + strcpy(g_last_rule_violation.violation_type, "pubkey_blacklist"); + sprintf(g_last_rule_violation.reason, "%s: Public key blacklisted", description ? description : "TEST_PUBKEY_BLACKLIST"); + + sqlite3_finalize(stmt); + sqlite3_close(db); + return NOSTR_ERROR_AUTH_REQUIRED; + } + sqlite3_finalize(stmt); + } + validator_debug_log("VALIDATOR_DEBUG: RULES ENGINE - STEP 1 PASSED - Pubkey not blacklisted\n"); + + // Step 2: Check hash blacklist + if (resource_hash) { + const char* hash_blacklist_sql = "SELECT rule_type, description FROM auth_rules WHERE rule_type = 'hash_blacklist' AND rule_target = ? AND operation = ? AND enabled = 1 ORDER BY priority LIMIT 1"; + rc = sqlite3_prepare_v2(db, hash_blacklist_sql, -1, &stmt, NULL); + if (rc == SQLITE_OK) { + sqlite3_bind_text(stmt, 1, resource_hash, -1, SQLITE_STATIC); + sqlite3_bind_text(stmt, 2, operation ? operation : "", -1, SQLITE_STATIC); + + if (sqlite3_step(stmt) == SQLITE_ROW) { + const char* description = (const char*)sqlite3_column_text(stmt, 1); + validator_debug_log("VALIDATOR_DEBUG: RULES ENGINE - STEP 2 FAILED - Hash blacklisted\n"); + char hash_blacklist_msg[256]; + sprintf(hash_blacklist_msg, "VALIDATOR_DEBUG: RULES ENGINE - Hash blacklist rule matched: %s\n", description ? description : "Unknown"); + validator_debug_log(hash_blacklist_msg); + + // Set specific violation details for status code mapping + strcpy(g_last_rule_violation.violation_type, "hash_blacklist"); + sprintf(g_last_rule_violation.reason, "%s: File hash blacklisted", description ? description : "TEST_HASH_BLACKLIST"); + + sqlite3_finalize(stmt); + sqlite3_close(db); + return NOSTR_ERROR_AUTH_REQUIRED; + } + sqlite3_finalize(stmt); + } + validator_debug_log("VALIDATOR_DEBUG: RULES ENGINE - STEP 2 PASSED - Hash not blacklisted\n"); + } else { + validator_debug_log("VALIDATOR_DEBUG: RULES ENGINE - STEP 2 SKIPPED - No resource hash provided\n"); + } + + // Step 3: Check pubkey whitelist + const char* whitelist_sql = "SELECT rule_type, description FROM auth_rules WHERE rule_type = 'pubkey_whitelist' AND rule_target = ? AND operation = ? AND enabled = 1 ORDER BY priority LIMIT 1"; + rc = sqlite3_prepare_v2(db, whitelist_sql, -1, &stmt, NULL); + if (rc == SQLITE_OK) { + sqlite3_bind_text(stmt, 1, pubkey, -1, SQLITE_STATIC); + sqlite3_bind_text(stmt, 2, operation ? operation : "", -1, SQLITE_STATIC); + + if (sqlite3_step(stmt) == SQLITE_ROW) { + const char* description = (const char*)sqlite3_column_text(stmt, 1); + validator_debug_log("VALIDATOR_DEBUG: RULES ENGINE - STEP 3 PASSED - Pubkey whitelisted\n"); + char whitelist_msg[256]; + sprintf(whitelist_msg, "VALIDATOR_DEBUG: RULES ENGINE - Whitelist rule matched: %s\n", description ? description : "Unknown"); + validator_debug_log(whitelist_msg); + sqlite3_finalize(stmt); + sqlite3_close(db); + return NOSTR_SUCCESS; // Allow whitelisted pubkey + } + sqlite3_finalize(stmt); + } + validator_debug_log("VALIDATOR_DEBUG: RULES ENGINE - STEP 3 FAILED - Pubkey not whitelisted\n"); + + // Step 4: Check if any whitelist rules exist - if yes, deny by default + const char* whitelist_exists_sql = "SELECT COUNT(*) FROM auth_rules WHERE rule_type = 'pubkey_whitelist' AND operation = ? AND enabled = 1 LIMIT 1"; + rc = sqlite3_prepare_v2(db, whitelist_exists_sql, -1, &stmt, NULL); + if (rc == SQLITE_OK) { + sqlite3_bind_text(stmt, 1, operation ? operation : "", -1, SQLITE_STATIC); + + if (sqlite3_step(stmt) == SQLITE_ROW) { + int whitelist_count = sqlite3_column_int(stmt, 0); + if (whitelist_count > 0) { + validator_debug_log("VALIDATOR_DEBUG: RULES ENGINE - STEP 4 FAILED - Whitelist exists but pubkey not in it\n"); + + // Set specific violation details for status code mapping + strcpy(g_last_rule_violation.violation_type, "whitelist_violation"); + strcpy(g_last_rule_violation.reason, "Public key not whitelisted for this operation"); + + sqlite3_finalize(stmt); + sqlite3_close(db); + return NOSTR_ERROR_AUTH_REQUIRED; + } + } + sqlite3_finalize(stmt); + } + validator_debug_log("VALIDATOR_DEBUG: RULES ENGINE - STEP 4 PASSED - No whitelist restrictions apply\n"); + + sqlite3_close(db); + validator_debug_log("VALIDATOR_DEBUG: RULES ENGINE - STEP 5 PASSED - All rule checks completed, default ALLOW\n"); + return NOSTR_SUCCESS; // Default allow if no restrictive rules matched +} + +/** + * Validate NIP-42 authentication event (kind 22242) + */ +static int validate_nip42_event(cJSON* event, const char* relay_url, const char* challenge_id) { + if (!event || !relay_url || !challenge_id) { + return NOSTR_ERROR_INVALID_INPUT; + } + + // Check event kind (must be 22242 for NIP-42) + cJSON* kind_json = cJSON_GetObjectItem(event, "kind"); + if (!kind_json || !cJSON_IsNumber(kind_json)) { + return NOSTR_ERROR_EVENT_INVALID_CONTENT; + } + + int kind = cJSON_GetNumberValue(kind_json); + if (kind != NOSTR_NIP42_AUTH_EVENT_KIND) { + return NOSTR_ERROR_EVENT_INVALID_CONTENT; + } + + // Use the existing NIP-42 verification from nostr_core_lib + int verification_result = nostr_nip42_verify_auth_event(event, challenge_id, + relay_url, NOSTR_NIP42_DEFAULT_TIME_TOLERANCE); + if (verification_result != NOSTR_SUCCESS) { + return verification_result; + } + + return NOSTR_SUCCESS; +} \ No newline at end of file diff --git a/test_auth_disabled.txt b/test_auth_disabled.txt new file mode 100644 index 0000000..d670460 --- /dev/null +++ b/test_auth_disabled.txt @@ -0,0 +1 @@ +test content diff --git a/test_file.txt b/test_file.txt new file mode 100644 index 0000000..d670460 --- /dev/null +++ b/test_file.txt @@ -0,0 +1 @@ +test content diff --git a/test_simple.txt b/test_simple.txt new file mode 100644 index 0000000..737d851 --- /dev/null +++ b/test_simple.txt @@ -0,0 +1 @@ +test_content_for_whitelist diff --git a/test_whitelist_debug.txt b/test_whitelist_debug.txt new file mode 100644 index 0000000..1478c7d --- /dev/null +++ b/test_whitelist_debug.txt @@ -0,0 +1 @@ +test_whitelist_debug diff --git a/tests/auth_test.sh b/tests/auth_test.sh index 2910d37..fdc1db0 100755 --- a/tests/auth_test.sh +++ b/tests/auth_test.sh @@ -52,72 +52,54 @@ record_test_result() { fi } -echo "=== Ginxsom Authentication System Test Suite ===" -echo "Testing unified nostr_core_lib authentication integration" -echo "Timestamp: $(date -Iseconds)" -echo - # Check prerequisites -echo "[INFO] Checking prerequisites..." for cmd in nak curl jq sqlite3; do if ! command -v $cmd &> /dev/null; then - echo "[ERROR] $cmd command not found" + echo "$cmd command not found" exit 1 fi done # Check if server is running if ! curl -s -f "${SERVER_URL}/" > /dev/null 2>&1; then - echo "[ERROR] Server not running at $SERVER_URL" - echo "[INFO] Start with: ./restart-all.sh" + echo "Server not running at $SERVER_URL" + echo "Start with: ./restart-all.sh" exit 1 fi # Check if database exists if [[ ! -f "$DB_PATH" ]]; then - echo "[ERROR] Database not found at $DB_PATH" + echo "Database not found at $DB_PATH" exit 1 fi -echo "[SUCCESS] All prerequisites met" -echo - # Setup test environment and auth rules ONCE at the beginning -echo "=== Setting up authentication rules ===" mkdir -p "$TEST_DIR" # Enable authentication rules sqlite3 "$DB_PATH" "INSERT OR REPLACE INTO auth_config (key, value) VALUES ('auth_rules_enabled', 'true');" # Delete ALL existing auth rules and cache (clean slate) -echo "Deleting all existing auth rules..." sqlite3 "$DB_PATH" "DELETE FROM auth_rules;" sqlite3 "$DB_PATH" "DELETE FROM auth_cache;" # Set up all test rules at once -echo "Creating test auth rules..." - # 1. Whitelist for TEST_USER1 for upload operations (priority 10) -sqlite3 "$DB_PATH" "INSERT INTO auth_rules (rule_type, rule_target, operation, priority, enabled, description) - VALUES ('pubkey_whitelist', '$TEST_USER1_PUBKEY', 'upload', 10, 1, 'TEST_WHITELIST_USER1');" +sqlite3 "$DB_PATH" "INSERT INTO auth_rules (rule_type, rule_target, operation, priority, enabled, description) + VALUES ('pubkey_whitelist', '$TEST_USER1_PUBKEY', 'upload', 10, 1, 'TEST_WHITELIST_USER1');" # 2. Blacklist for TEST_USER2 for upload operations (priority 5 - higher priority) -sqlite3 "$DB_PATH" "INSERT INTO auth_rules (rule_type, rule_target, operation, priority, enabled, description) - VALUES ('pubkey_blacklist', '$TEST_USER2_PUBKEY', 'upload', 5, 1, 'TEST_BLACKLIST_USER2');" +sqlite3 "$DB_PATH" "INSERT INTO auth_rules (rule_type, rule_target, operation, priority, enabled, description) + VALUES ('pubkey_blacklist', '$TEST_USER2_PUBKEY', 'upload', 5, 1, 'TEST_BLACKLIST_USER2');" # 3. Hash blacklist (will be set after we create a test file) echo "test content for hash blacklist" > "$TEST_DIR/blacklisted_file.txt" BLACKLISTED_HASH=$(sha256sum "$TEST_DIR/blacklisted_file.txt" | cut -d' ' -f1) -sqlite3 "$DB_PATH" "INSERT INTO auth_rules (rule_type, rule_target, operation, priority, enabled, description) - VALUES ('hash_blacklist', '$BLACKLISTED_HASH', 'upload', 5, 1, 'TEST_HASH_BLACKLIST');" - -echo "Hash blacklisted: $BLACKLISTED_HASH" +sqlite3 "$DB_PATH" "INSERT INTO auth_rules (rule_type, rule_target, operation, priority, enabled, description) + VALUES ('hash_blacklist', '$BLACKLISTED_HASH', 'upload', 5, 1, 'TEST_HASH_BLACKLIST');" # Display the rules we created -echo -echo "Auth rules created:" -sqlite3 "$DB_PATH" -header -column "SELECT rule_type, rule_target, operation, priority, enabled, description FROM auth_rules WHERE description LIKE 'TEST_%' ORDER BY priority;" -echo +# (Auth rules configured for testing) # Helper functions create_test_file() { @@ -173,8 +155,6 @@ test_upload() { } # Run the tests -echo "=== Running Authentication Tests ===" -echo # Test 1: Whitelisted user (should succeed) test_file1=$(create_test_file "whitelisted_upload.txt" "Content from whitelisted user") @@ -194,20 +174,15 @@ RANDOM_PRIVKEY="abcd1234567890abcd1234567890abcd1234567890abcd1234567890abcd1234 test_upload "Test 4: Random User (No Rules)" "$RANDOM_PRIVKEY" "$test_file4" "ANY" # Test 5: Test with authentication disabled -echo "=== Test 5: Authentication Disabled ===" -echo "Disabling authentication rules..." sqlite3 "$DB_PATH" "INSERT OR REPLACE INTO auth_config (key, value) VALUES ('auth_rules_enabled', 'false');" test_file5=$(create_test_file "auth_disabled.txt" "Upload with auth disabled") test_upload "Test 5: Upload with Authentication Disabled" "$TEST_USER2_PRIVKEY" "$test_file5" "200" # Re-enable authentication -echo "Re-enabling authentication rules..." sqlite3 "$DB_PATH" "INSERT OR REPLACE INTO auth_config (key, value) VALUES ('auth_rules_enabled', 'true');" -echo # Test failure modes - comprehensive edge case testing -echo "=== Test 6: Invalid Authorization Header Formats ===" # Helper function for failure mode tests test_failure_mode() { @@ -242,7 +217,7 @@ test_failure_mode "Test 6b: Invalid Authorization Prefix" "Bearer invalidtoken12 # Test 6c: Invalid Base64 in Authorization test_failure_mode "Test 6c: Invalid Base64 in Authorization" "Nostr invalid!@#base64" -echo "=== Test 7: Malformed JSON Events ===" +# Test malformed JSON events # Test 7a: Invalid JSON Structure malformed_json='{"kind":24242,"content":"","created_at":' # Incomplete JSON @@ -254,10 +229,9 @@ missing_fields_json='{"kind":24242,"content":"","created_at":1234567890,"tags":[ missing_fields_b64=$(echo -n "$missing_fields_json" | base64 -w 0) test_failure_mode "Test 7b: Missing Required Fields (no pubkey)" "Nostr $missing_fields_b64" -echo "=== Test 8: Invalid Key Formats ===" +# Test invalid key formats # Test 8a: Short Public Key -echo "Test 8a: Short Public Key (32 chars instead of 64)" echo "short_key_test" > "$TEST_DIR/short_key.txt" file_hash=$(sha256sum "$TEST_DIR/short_key.txt" | cut -d' ' -f1) short_pubkey="1234567890abcdef1234567890abcdef" # 32 chars instead of 64 diff --git a/tests/auth_test_tmp/debug_whitelisted.txt b/tests/auth_test_tmp/debug_whitelisted.txt new file mode 100644 index 0000000..6d5c3aa --- /dev/null +++ b/tests/auth_test_tmp/debug_whitelisted.txt @@ -0,0 +1 @@ +Content from whitelisted user for test diff --git a/tests/auth_test_tmp/nip42_challenge b/tests/auth_test_tmp/nip42_challenge index aa2c379..d8db9c3 100644 --- a/tests/auth_test_tmp/nip42_challenge +++ b/tests/auth_test_tmp/nip42_challenge @@ -1 +1 @@ -3fb6a0ea1d337bd09f1f88f65f124174ad7161dd5ea0fae74c0dd0b0db43a24e +1c4c3b202bbe84869d7e688fd4abccf9f46a57073df1c0e3b515d4810d9b6525 diff --git a/tests/debug_auth.sh b/tests/debug_auth.sh new file mode 100755 index 0000000..0ae7aab --- /dev/null +++ b/tests/debug_auth.sh @@ -0,0 +1,127 @@ +#!/bin/bash + +# debug_auth.sh - Simplified authentication test for Test 1: Whitelisted User Upload +# Isolates the first failing test case to debug the pubkey extraction issue + +# Configuration +SERVER_URL="http://localhost:9001" +UPLOAD_ENDPOINT="${SERVER_URL}/upload" +DB_PATH="db/ginxsom.db" +TEST_DIR="tests/auth_test_tmp" + +# Test keys (same as Test 1) +TEST_USER1_PRIVKEY="5c0c523f52a5b6fad39ed2403092df8cebc36318b39383bca6c00808626fab3a" +TEST_USER1_PUBKEY="87d3561f19b74adbe8bf840682992466068830a9d8c36b4a0c99d36f826cb6cb" + +echo "=== Debug Authentication Test ===" +echo "Testing: Whitelisted User Upload" +echo "Expected: HTTP 200 (Allowed)" +echo "Server: $SERVER_URL" +echo + +# Check prerequisites +echo "Checking prerequisites..." +for cmd in nak curl jq sqlite3; do + if ! command -v $cmd &> /dev/null; then + echo "[ERROR] $cmd command not found" + exit 1 + fi +done + +# Check if server is running +if ! curl -s -f "${SERVER_URL}/" > /dev/null 2>&1; then + echo "Server not running at $SERVER_URL" + echo "Start with: ./restart-all.sh" + exit 1 +fi + +# Check if database exists +if [[ ! -f "$DB_PATH" ]]; then + echo "Database not found at $DB_PATH" + exit 1 +fi + +echo "Prerequisites OK" +echo + +# Setup test environment +echo "=== Setting up authentication rules ===" +mkdir -p "$TEST_DIR" + +# Enable authentication rules +sqlite3 "$DB_PATH" "INSERT OR REPLACE INTO auth_config (key, value) VALUES ('auth_rules_enabled', 'true');" + +# Clean slate +sqlite3 "$DB_PATH" "DELETE FROM auth_rules;" +sqlite3 "$DB_PATH" "DELETE FROM auth_cache;" + +# Create the whitelist rule (same as Test 1) +echo "Creating whitelist rule for pubkey: $TEST_USER1_PUBKEY" +sqlite3 "$DB_PATH" "INSERT INTO auth_rules (rule_type, rule_target, operation, priority, enabled, description) + VALUES ('pubkey_whitelist', '$TEST_USER1_PUBKEY', 'upload', 10, 1, 'TEST_WHITELIST_USER1');" + +# Verify rule creation +echo +echo "Current auth rules:" +sqlite3 "$DB_PATH" -header -column "SELECT rule_type, rule_target, operation, priority, enabled, description FROM auth_rules ORDER BY priority;" + +# Helper function to create auth event (exactly like auth_test.sh) +create_auth_event() { + local privkey="$1" + local operation="$2" + local hash="$3" + local expiration_offset="${4:-3600}" # 1 hour default + + local expiration=$(date -d "+${expiration_offset} seconds" +%s) + + local event_args=(-k 24242 -c "" --tag "t=$operation" --tag "expiration=$expiration" --sec "$privkey") + + if [[ -n "$hash" ]]; then + event_args+=(--tag "x=$hash") + fi + + nak event "${event_args[@]}" +} + +# Create test file +echo +echo "=== Running Test 1: Whitelisted User Upload ===" +test_file="$TEST_DIR/debug_whitelisted.txt" +echo "Content from whitelisted user for test" > "$test_file" + +# Get file hash +file_hash=$(sha256sum "$test_file" | cut -d' ' -f1) + +# Create auth event +event=$(create_auth_event "$TEST_USER1_PRIVKEY" "upload" "$file_hash") + +# Base64 encode for Authorization header +auth_header="Nostr $(echo "$event" | base64 -w 0)" + +# Make the upload request +response_file=$(mktemp) +http_status=$(curl -s -w "%{http_code}" \ + -H "Authorization: $auth_header" \ + -H "Content-Type: text/plain" \ + --data-binary "@$test_file" \ + -X PUT "$UPLOAD_ENDPOINT" \ + -o "$response_file" 2>/dev/null) + +echo "HTTP Status: $http_status" +if [[ "$http_status" == "200" ]]; then + echo "✅ PASSED - Upload allowed as expected" +else + echo "❌ FAILED - Expected 200, got $http_status" +fi + +echo +echo "Clean up: rm -f \"$test_file\"" + +# Cleanup +rm -f "$response_file" + +echo +echo "=== Debug Test Complete ===" +echo "1. Check ./restart-all.sh --follow for detailed logs" +echo "2. Verify pubkey extraction in logs/app/debug.log" +echo "3. Clean up: sqlite3 db/ginxsom.db \"DELETE FROM auth_rules WHERE description LIKE 'TEST_%';\"" \ No newline at end of file