Ich konnte das Problem lösen, es lag an der nginx Config, folgende Infos haben gefehlt:
## XML Sitemap support.
location = /sitemap.xml {
log_not_found off;
access_log off;
try_files $uri /;
}
## robots.txt support.
location = /robots.txt {
log_not_found off;
access_log off;
try_files $uri /;
}
## store-api support.
location ~ ^/store-api/[0-9a-z-\/]+ {
log_not_found off;
access_log off;
try_files $uri /;
}