docker-compose.yml 파일 입니다. # Docker Compose 파일에서 사용할 최상위 볼륨을 미리 정의합니다. # 여기서 정의된 이름으로 각 서비스에서 데이터를 영구적으로 저장할 수 있습니다. volumes: n8n_storage: # n8n의 설정, 데이터베이스 파일 등을 저장하기 위한 볼륨 postgres_storage: # PostgreSQL 데이터베이스 파일을 저장하기 위한 볼륨 qdrant_storage: # Qdrant 벡터 데이터베이스 파일을 저장하기 위한 볼륨 # 서비스들이 서로 통신할 수 있도록 사용자 정의 네트워크를 생성합니다. networks: demo: # 'x-*'는 YAML의 'Extension Fields' 기능으로, 재사용할 설정 묶음을 정의할 때 사용합니다. # '&service-n8n'은 'service-n8n'이라는 이름의 앵커(anchor)를 정의하는 것입니다. # 이 앵커는 아래 n8n 관련 서비스에서 ' n8n proxy-host conf파일입니다. # ------------------------------------------------------------ # n8n.thelimin.com # ------------------------------------------------------------ map $scheme $hsts_header { https "max-age=63072000; preload"; } server { set $forward_scheme http; set $server "thelimin.com"; set $port 5678; listen 80; listen [::]:80; listen 443 ssl; listen [::]:443 ssl; server_name n8n.thelimin.com; http2 on; # Let's Encrypt SSL include conf.d/include/letsencrypt-acme-challenge.conf; include conf.d/include/ssl-cache.conf; include conf.d/include/ssl-ciphers.conf; ssl_certificate /etc/letsencrypt/live/npm-1/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/npm-1/privkey.pem; # HSTS (ngx_http_headers_module is required) (63072000 seconds = 2 years) add_header Strict-Transport-Security $hsts_header always; # Force SSL include conf.d/include/force-ssl.conf; access_log /data/logs/proxy-host-4_access.log proxy; error_log /data/logs/proxy-host-4_error.log warn; location / { proxy_set_header Host n8n.thelimin.com; proxy_set_header Origin https://n8n.thelimin.com; proxy_set_header X-Forwarded-Proto https; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_set_header X-Forwarded-Scheme $scheme; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header X-Real-IP $remote_addr; proxy_pass http://thelimin.com:5678; # HSTS (ngx_http_headers_module is required) (63072000 seconds = 2 years) add_header Strict-Transport-Security $hsts_header always; # Proxy! include conf.d/include/proxy.conf; } # Custom include /data/nginx/custom/server_proxy[.]conf; } 이부분 문제가 있을까요?? 한번만 더 확인 부탁드립니다. ^^;
Paired item data for item from node 'Category2JSON' is unavailable. Ensure 'Category2JSON' is providing the required output. An expression here won't work because it uses .item and n8n can't figure out the matching item . You can either: Add the missing information to the node 'Category2JSON' Or use .first() , .last() or .all()[index] instead of .item 이렇게 에러가 납니다.