10 messages in ru.sysoev.nginxRe: ssl accelerator
FromSent OnAttachments
lovewadhwaApr 29, 2009 7:08 am 
lovewadhwaApr 30, 2009 4:25 am 
Igor SysoevApr 30, 2009 5:07 am 
Joe BofhApr 30, 2009 3:48 pm 
Igor SysoevApr 30, 2009 10:45 pm 
Joe BofhApr 30, 2009 11:38 pm 
Igor SysoevApr 30, 2009 11:43 pm 
Joe BofhMay 1, 2009 1:13 am 
Joe BofhMay 1, 2009 1:15 am 
Igor SysoevMay 1, 2009 1:36 am 
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: ssl acceleratorActions...
From:Joe Bofh (lis@ruby-forum.com)
Date:May 1, 2009 1:13:12 am
List:ru.sysoev.nginx

Thanks!

For the record, I have this now working with a bunch of different apps such as sugarcrm.

location / { root /var/www/crm; access_log off;

index index.php index.html; expires 1d;

try_files $uri $uri/ /index.php?q=$uri; }

location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_buffer_size 128k; fastcgi_buffers 4 256k; fastcgi_param SCRIPT_FILENAME /var/www/crm$fastcgi_script_name; include /usr/local/nginx/conf/fastcgi_params; }