14 messages in ru.sysoev.nginxRe: reverse proxy vs. stand-alone
FromSent OnAttachments
jemariMay 14, 2009 5:24 pm 
Cliff WellsMay 14, 2009 5:35 pm 
Igor SysoevMay 14, 2009 10:19 pm 
Cliff WellsMay 15, 2009 12:48 am 
Igor SysoevMay 15, 2009 7:55 am 
Cliff WellsMay 15, 2009 9:19 am 
AMP AdminMay 15, 2009 11:09 am 
Cliff WellsMay 15, 2009 11:38 am 
Claude BingMay 15, 2009 11:45 am 
Igor SysoevMay 15, 2009 11:46 am 
AMP AdminMay 15, 2009 12:09 pm 
jemariMay 16, 2009 3:59 pm 
Cliff WellsMay 16, 2009 8:45 pm 
Cliff WellsMay 16, 2009 8:47 pm 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: reverse proxy vs. stand-aloneActions...
From:Igor Sysoev (is@rambler-co.ru)
Date:May 15, 2009 11:46:04 am
List:ru.sysoev.nginx

On Fri, May 15, 2009 at 11:38:34AM -0700, Cliff Wells wrote:

On Fri, 2009-05-15 at 13:09 -0500, AMP Admin wrote:

Cliff, what did your Core SEF for Joomla! from .htaccess look like after converting to nginx?

This is all I used:

http://wiki.nginx.org/NginxJoomla

This

location / { expires 30d; error_page 404 = @joomla; log_not_found off; }

location @joomla { rewrite ^(.*)$ /index.php?q=$1 last; }

should be

location / { expires 30d; error_page 404 = /index.php?q=$uri; log_not_found off; }

or

location / { expires 30d; try_files $uri /index.php?q=$uri; }

It's someone else's site (my VPS), so I'm not 100% certain of any Joomla settings (from the admin interface) might come into play.