( nevergone | 2013. 10. 16., sze – 20:37 )

Úgy néz ki, hogy ez segített (kódrészlet):


	location ~ ^/thebuggenie/(.*\.)(png|gif|jpg|jpeg|js|css|ico)$ {
		alias /srv/www/thebuggenie/thebuggenie/$1$2;
	}

	location ~ ^/thebuggenie/.+\.php {
		include fastcgi_params;
		fastcgi_split_path_info ^(.+\.php)(/.+)$;
		fastcgi_pass 127.0.0.1:9000;
		fastcgi_index index.php;
		fastcgi_param SCRIPT_FILENAME /srv/www/thebuggenie/thebuggenie/index.php;
		fastcgi_intercept_errors on;
	}
	 
	location ~ /thebuggenie/(?<suburi>.*) {
		set $suburi $1;
		try_files $uri $uri/ /thebuggenie/index.php?url=$suburi&$args;
	}

-----
"Egy jó kapcsolatban a társunkat az ő dolgában kell támogatni, nem a miénkben."
rand() a lelke mindennek! :)