Hey,
ich betreibe Shopware 6 unter Nginx.
Leider funktioniert das Sitemap nicht.
Wenn ich in der Adressleiste des Browsers mein-shop.de/sitemap.xml eingebe erscheint Error 404
./bin/console sitemap:generate
Zeigt keine Fehlermeldung
Muss in der Nginx-Konfiguration noch was geädert werden dass das Sitemap funktioniert?
Meine Nginx-Config (ISP-Config)
##subroot public ##
location / {
try_files $uri /index.php$is_args$args;
}
location /recovery/install {
index index.php;
try_files $uri /recovery/install/index.php$is_args$args;
}
location /recovery/update {
index index.php;
try_files $uri /recovery/update/index.php$is_args$args;
}
gzip on;
gzip_comp_level 5;
gzip_min_length 256;
gzip_types
application/atom+xml
application/javascript
application/json
application/rss+xml
application/vnd.ms-fontobject
application/x-font-ttf
application/x-javascript
application/x-web-app-manifest+json
application/xhtml+xml
application/xml
font/opentype
image/svg+xml
image/x-icon
text/css
text/plain
text/javascript
text/x-component;
gzip_disable "MSIE [1-6]\.(?!.*SV1)";
location ~* \.(txt|xml|js)$ {
expires 30d;
}
location ~* \.(css)$ {
expires 30d;
}
location ~* \.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav|mp4|m4v|ogg|webm|aac|woff2)$ {
expires 30d;
}
location ~* \.(jpg|jpeg|png|gif|swf|webp)$ {
expires 30d;
}
Vielen Dank
Ronny