Hi,
wir verwende ein Setup mit Nginx (vorab hier geht es rein ums dev-Setup), welches für Shopware 6.5 einwandfrei funktionierte. Shopware 6.6 ebenfalls, jedoch bekomme ich aktuell nur beim Storefront-Watcher folgenden Fehler in der Konsole selbst:
Kompiliert wird alles soweit ohne Fehler, versucht habe ich schon einiges, jedoch leider ohne Erfolg. Mein letzter Anhaltspunkt wäre dieser noch, den ich im Readme im Storefront-Vendor gefunden habe, jedoch greift keine der Lösungen die ich ausprobiert habe:
Node.js 17+: ECONNREFUSED issue with IPv6 and localhost (#705)
Nginx Config sieht so aus:
worker_processes 1;
error_log stderr warn;
pid /run/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
# Define custom log format to include reponse times
log_format main_timed '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for" '
'$request_time $upstream_response_time $pipe $upstream_cache_status';
access_log /dev/stdout main_timed;
error_log /dev/stderr notice;
keepalive_timeout 65;
# Write temporary files to /tmp so they can be created as a non-privileged user
client_body_temp_path /tmp/client_temp;
proxy_temp_path /tmp/proxy_temp_path;
fastcgi_temp_path /tmp/fastcgi_temp;
uwsgi_temp_path /tmp/uwsgi_temp;
scgi_temp_path /tmp/scgi_temp;
# Hide nginx version in headers
server_tokens off;
# maximum file upload size
client_max_body_size 256M;
map_hash_max_size 8192;
map_hash_bucket_size 256;
map $request_uri $redirect {
default 0;
}
# Default server definition
server {
listen 8000 default_server;
listen [::]:8000 default_server;
server_name localhost;
gzip on;
gzip_proxied any;
gzip_types
text/plain
text/html
text/css
application/xml
application/javascript
application/x-javascript;
gzip_proxied no-cache no-store private expired auth;
gzip_min_length 100;
sendfile off;
root /sw6/public;
index index.php index.html;
if ($redirect) {
return 301 $redirect;
}
location / {
# First attempt to serve request as file, then
# as directory, then fall back to index.php
try_files $uri $uri/ /index.php?q=$uri&$args;
}
# Redirect server error pages to the static page /50x.html
error_page 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~* ^.+\.(?:css|cur|js|jpe?g|gif|ico|png|svg|webp|html|woff|woff2|xml)$ {
expires 1y;
add_header Cache-Control "public, must-revalidate, proxy-revalidate";
access_log off;
# The directive enables or disables messages in error_log about files not found on disk.
log_not_found off;
tcp_nodelay 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;
try_files $uri /index.php$is_args$args;
}
location ~* ^.+\.svg$ {
add_header Content-Security-Policy "script-src 'none'";
}
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name) {
return 404;
}
proxy_buffers 16 16k;
proxy_buffer_size 16k;
proxy_connect_timeout 300s;
proxy_send_timeout 300s;
proxy_read_timeout 300s;
send_timeout 300s;
client_body_buffer_size 128k;
# Mitigate https://httpoxy.org/ vulnerabilities
fastcgi_param HTTP_PROXY "";
fastcgi_pass shopware:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param HTTP_HOST localhost:8000; # needed for hot reloading to work
fastcgi_param HTTP_X_FORWARDED_PORT 8000; # needed for hot reloading to work
fastcgi_param HTTP_X_FORWARDED_PROTO http;
http2_push_preload on;
include fastcgi_params;
}
location ~* \.(jpg|jpeg|gif|png|css|js|ico|xml)$ {
expires 5d;
try_files $uri $uri/ /index.php?q=$uri&$args;
}
# Deny access to . files, for security
location ~ /\. {
log_not_found off;
deny all;
}
# Allow fpm ping and status from localhost
location ~ ^/(fpm-status|fpm-ping)$ {
access_log off;
allow 127.0.0.1;
deny all;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
fastcgi_pass shopware:9000;
}
}
#Storefront Watcher proxy
server {
listen 9998;
server_name default_server;
location / {
proxy_pass http://shopware:9998;
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
proxy_set_header Host "localhost:8000";
}
}
#Admin Watcher proxy
server {
listen 8888;
server_name default_server;
location / {
proxy_pass http://shopware:8080;
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
proxy_set_header Host "localhost:8000";
}
}
}
Im docker-compose habe ich einen shopware (php-service) sowie eine mariadb und nginx (alle auch so benannt)
Bin jetzt nicht der Experte mit nginx, daher danke für jeglichen Input.