Detektivo
Detektivo copied to clipboard
Help to integrate?
Hi, im trying to integrate using TNTSEARCH.
Someone can help me?
#pesquisa
'detektivo' => [
'engine' => 'tntsearch',
'collections' => [
'businessunit' => ['name']
]
]
Its my code, but when i make the GET to search with the name nothing =(
I need do something more? coding in some place?
Thanks
So, I made it partially working.
If I start cockpit this via php -S 0.0.0.0:80 index.php
GraphQL request is working. But via php-fpm process is failing. Any ideas? Nothing in logs, is making me pretty unsure what is going on.
bump on the same issue...
My nginx config looks like this:
# Nginx configuration
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
index index.php index.html;
#server_name localhost;
charset utf-8;
location / {
# try_files $uri /index.php?$query_string;
try_files $uri $uri/ /index.php;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
sendfile off;
client_max_body_size 100m;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass cockpit-app:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param COCKPIT_URL_REWRITE On;
fastcgi_intercept_errors off;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
}
# Deny direct access
location ~ /(\.ht|\.git|cp|composer.json|package.json|storage\/logs\/cockpit.log|storage\/data\/) {
deny all;
}
}
Same issue with Nuxt and Apollo
Same for me. Frustrating as my origin master api-key worked, then I regenerated it and since then its giving me 401 every time. I've cleared cockpit cache at /settings/info
and restarted nginx but no joy.
Edit: Apologies, was user error on my part, was hitting a test domain rather than production one.
Same here
I just downloaded the archive content to the /addons/CockpitQL directory.
api/graphql/query?token=token gives {"error":"Unauthorized"}
Any progress on this issue?
@flayks , I guess you may be facing the same error like me. Artur answered here that you can't use custom token. You can only use account token which is under account setting.