-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{"error":"Unauthorized"} all the time #6
Comments
So, I made it partially working. If I start cockpit this via |
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 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 |
Any progress on this issue? |
I've installed cockpit and CockpitQL (git clone to addons folder).
But I cannot access API. I've always get:
{"error":"Unauthorized"}
In logs there isn't any information, and I'm using
Full access API-key
. Should I do something additional?The text was updated successfully, but these errors were encountered: