Skip to content

Instantly share code, notes, and snippets.

Поставщик

контакты Контакт поставщика
краткое наименование *
полное наименование *
ИНН
ОГРН
КПП
ОКПО
телефон
@rimidl
rimidl / ruby_encoding_marker.rb
Created June 5, 2012 12:04
RubyEncodingMarker - скрипт, занимающийся вставкой информации о кодировке файла необходимой для корректной работы Ruby 1.9. Полезен при переходе со старой версии Ruby.
# -*- encoding: utf-8 -*-
# file name: ruby_encoding_marker.rb
#
# @example Use in console:
# $ ruby ruby_encoding_marker.rb app/controllers
#
module RubyEncodingMarker
UTF8 = '# -*- encoding: utf-8 -*-'
@rimidl
rimidl / gist:2818363
Created May 28, 2012 10:22
nginx settings for ssl connection with rails app
$ cat /etc/nginx/sites-enabled/ssl.myapp.com
upstream evrmyapp_ssl {
# fail_timeout=0 means we always retry an upstream even if it failed
# to return a good HTTP response (in case the Unicorn master nukes a
# single worker for timing out).
# for UNIX domain socket setups:
server unix:/tmp/myapp.socket fail_timeout=0;
}