Giter Site home page Giter Site logo

Comments (7)

galuszkak avatar galuszkak commented on May 16, 2024

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.

from cockpitql.

panosru avatar panosru commented on May 16, 2024

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;
    }
}

from cockpitql.

flayks avatar flayks commented on May 16, 2024

Same issue with Nuxt and Apollo

from cockpitql.

tanc avatar tanc commented on May 16, 2024

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.

from cockpitql.

yakou32 avatar yakou32 commented on May 16, 2024

Same here

I just downloaded the archive content to the /addons/CockpitQL directory.

api/graphql/query?token=token gives {"error":"Unauthorized"}

from cockpitql.

flayks avatar flayks commented on May 16, 2024

Any progress on this issue?

from cockpitql.

ronaldaug avatar ronaldaug commented on May 16, 2024

@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.

from cockpitql.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.