| Subject: | Re: ssl accelerator | |
|---|---|---|
| From: | Joe Bofh (lis...@ruby-forum.com) | |
| Date: | May 1, 2009 1:13:12 am | |
| List: | ru.sysoev.nginx | |
Refine Search
| From | Sent On | Attachments |
|---|---|---|
| lovewadhwa | Apr 29, 2009 7:08 am | |
| lovewadhwa | Apr 30, 2009 4:25 am | |
| Igor Sysoev | Apr 30, 2009 5:07 am | |
| Joe Bofh | Apr 30, 2009 3:48 pm | |
| Igor Sysoev | Apr 30, 2009 10:45 pm | |
| Joe Bofh | Apr 30, 2009 11:38 pm | |
| Igor Sysoev | Apr 30, 2009 11:43 pm | |
| Joe Bofh | May 1, 2009 1:13 am | |
| Joe Bofh | May 1, 2009 1:15 am | |
| Igor Sysoev | May 1, 2009 1:36 am |
| Subject: | Re: ssl accelerator | |
|---|---|---|
| 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; }
-- Posted via http://www.ruby-forum.com/.

