API - Invalid Auth / Missing Auth

Hallo,

zurzeit arbeite ich an einer Verbindung zu Shopware und arbeite mit der Shopware API um Artikel zu importieren. Das klappte bis vor kurzen auch super, nun seid ein paar Tagen bekomme ich auf meinen Server das Problem das ich nur 401 Meldungen zurück bekomme sobald ich die API benutze. Lokal auf dem Webserver läuft es ohne probleme.

Der Webserver läuft mit nginx und php5-fpm, der lokale mit apache.

Die Vhost Conf:

server {
    listen 80;
    server_name www.xxx.de;
    root /var/www/xxx.de;

    server_tokens off;

    access_log /var/log/nginx/www.xxx.de.access.log;
    error_log /var/log/nginx/www.xxx.de.error.log;

    set $shopware_env 'production';

    include global/shopware.conf;

    // rewrite config
    include config/xxx.conf;
}

Genutz wird außerdem die shopware.conf von Github: shopware-with-nginx/shopware.conf at master · bcremer/shopware-with-nginx · GitHub

Weiß einer woran das liegen könnte? Ich bin zurzeit echt am verzeifeln hab auch schon das mit FastCGI params probiert etc.