ssl accelerator

Joe Bofh lists at ruby-forum.com
Fri May 1 12:13:35 MSD 2009


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/.





More information about the nginx mailing list