ISPconfig & Shopware 6

andrejohn

New Member
Guten Morgen, folgendes Problem.

wenn ich auf einer Domain Shopware 6 installieren möchte, lege ich die Nginx Direktiven an:
dennoch fehlt beim aufrufen der Installation jegliches Design und der Installer ist nicht funktional.

Habe ich irgendwo einen Denkfehler?


Code:
##subroot public ##

location / {
    try_files $uri $uri/ /index.php?q=$uri&$args;
}
location /recovery/update/ {
    index index.php;
    try_files $uri /recovery/install/index.php$is_args$args;
}
location ~ ^/(recovery\/update\/index|index|shopware-installer\.phar)\.php(/|$) {
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    include fastcgi.conf;
    fastcgi_param HTTP_PROXY "";
    fastcgi_buffers 8 16k;
    fastcgi_buffer_size 32k;
    proxy_connect_timeout 300s;
    proxy_send_timeout 300s;
    proxy_read_timeout 300s;
    send_timeout 300s;
    client_body_buffer_size 128k;
    {FASTCGIPASS}
}
location = /sitemap.xml {
    log_not_found off;
    access_log off;
    try_files $uri /;
}
location = /robots.txt {
    log_not_found off;
    access_log off;
    try_files $uri /;
}

location ~* ^.+\.(?:css|cur|js|jpe?g|gif|ico|png|svg|webp|avif|html|woff|woff2|xml)$ {
    expires 1y;
    add_header Cache-Control "public, must-revalidate, proxy-revalidate";
    access_log off;
    log_not_found off;
## Set the OS file cache.
    open_file_cache max=3000 inactive=120s;
    open_file_cache_valid 45s;
    open_file_cache_min_uses 2;
    open_file_cache_errors off;

    location ~* ^.+\.svg$ {
        add_header Content-Security-Policy "script-src 'none'";
    }
}
 

Werbung

Top