Keine neuen Bilder 4.03

  • Ersteller des Themas Ersteller des Themas karabey
  • Erstellungsdatum Erstellungsdatum

testjo

Sehr aktives Mitglied
1. Juli 2010
3.336
3
NRW GRENZE HOLLAND
AW: Keine neuen Bilder 4.03

Zum info wen einer fehler / BUGS hat aber abweichende installationen / einstellungen, dan soll man die gleich bei erste anfrage ins Support Forum hier auch mitposten oder glaubt man die übrige User die hier helfen haben ein GLASKUGEL?

Fürs weitere eigene anpassungen einstellungen abweichendes sind ziemlich oft NICHT JTL update sicher, auch da aufpassen!
 

karabey

Sehr aktives Mitglied
28. November 2012
927
75
AW: Keine neuen Bilder 4.03

Ich habe das Problem gelöst. Der Fehler liegt an den NGINX ProxyPass-Regeln. Das war für mich die Lösung.

Code:
gzip  on;
gzip_http_version 1.0;
gzip_comp_level 6;
gzip_min_length 1100;
gzip_buffers     16 8k;
gzip_proxied any;
gzip_static on;
gzip_proxied        expired no-cache no-store private auth;
gzip_disable        "MSIE [1-6]\.";
gzip_vary           on;


gzip_types
# text/html is always compressed by HttpGzipModule
text/css
text/javascript
text/xml
text/plain
text/x-component
application/javascript
application/json
application/xml
application/rss+xml
application/x-javascript
font/truetype
font/opentype
application/vnd.ms-fontobject
image/svg+xml svg svgz
image/png
image/gif
image/jpeg;


location ~* \.(?:ico|css|js|gif|jpe?g|png|svg|woff|ttf)$ {
	expires max;
	try_files $uri $uri/ @rewrite;
	add_header Pragma public;
	add_header Cache-Control "public";
	log_not_found off;
	access_log off;
	add_header ETag "";
}


rewrite ^/asset/(.*) /includes/libs/minify/index.php?g=$1 last;


location @rewrite {
	rewrite / /index.php?$args;
}
location /admin{}
location /dbeS{}


location ~ [^/]\.php(/|$) {
	fastcgi_split_path_info ^(.+?\.php)(/.*)$;
	if (!-f $document_root$fastcgi_script_name) {
		return 404;
	}
	fastcgi_index index.php;
	include fastcgi_params;
	fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
	proxy_connect_timeout  300s;
	proxy_send_timeout  300s;
	proxy_read_timeout  300s;
	fastcgi_send_timeout 300s;
	fastcgi_read_timeout 300s;
	fastcgi_pass 127.0.0.1:9002;
}
 

Ähnliche Themen