Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

John http://www.red91.com

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

nginx gzip config

   1  
   2    # output compression saves bandwidth 
   3    gzip              on;
   4    gzip_proxied      any;
   5    gzip_http_version 1.1;
   6    #gzip_min_length   1100;
   7    gzip_comp_level   5;
   8    #gzip_buffers      4 8k;
   9    gzip_types        text/plain text/html text/xml text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript application/atom+xml;
  10    #gzip_vary        on;
  11    #gzip_disable     "MSIE [1-6]\.";

rails sendmail settings

   1  
   2  config.action_mailer.raise_delivery_errors = true
   3  ActionMailer::Base.delivery_method = :sendmail
   4  ActionMailer::Base.sendmail_settings = {
   5      :location       => '/usr/sbin/sendmail',
   6      :arguments      => '-i -t'
   7  }
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS