[rt-users] NoAuth CSS redirected to the current defaultpage?

Marc Chantreux mc at unistra.fr
Wed Oct 1 08:59:59 EDT 2014


hello, 

i'm trying to run rt-server.fcgi via nginx with the following
configuration. I can load the first page without any CSS.

the pb seems to be that every link renders the login page. even 

NoAuth/css/rudder/squished-a6ecd9cac12ad7882b058c189d8356f0.css

I start the server with 

     spawn-fcgi -M770 -g www-data -n -s /tmp/rt.acme.sock \
         -- sbin/rt-server.fcgi

and my current nginx config is: 

upstream acme {
	server unix:/tmp/rt.acme.sock;
}

server {
	listen 443 ssl;
	listen 80;
	server_name demo-rt-com.u-strasbg.fr;
	root /home/rt/site/acme/share/;

	location /static {
		allow all;
		autoindex off;
		expires max;
		try_files $uri @acme;
	}

	location / {
		set $path_info $uri;
		fastcgi_param SCRIPT_NAME "";
		fastcgi_pass acme;
		include fastcgi_params;
	}
}

any idea to solve it ? 

regards 
-- 
Marc Chantreux,
Mes coordonnées: http://annuaire.unistra.fr/chercher?n=chantreux
Direction Informatique, Université de Strasbourg (http://unistra.fr) 
Service Métiers, Pôle Outils Collaboratifs
"Don't believe everything you read on the Internet"
    -- Abraham Lincoln



More information about the rt-users mailing list