Oct 16 2010
- 04/10/2011 - Updated application.js and application.rb thanks to @rebo's comments
In this article, I will walk through some simple steps to get a [demo app][2] up and running with [Backbone.js][3] and [Sinatra][4] on [Heroku][5].
| """:mod:`hstore` --- Using PostgreSQL hstore with SQLAlchemy | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| .. note:: | |
| I released it under Public Domain. Feel free to use! | |
| It provides :class:`Hstore` type which makes you to store Python | |
| dictionaries into hstore columns in PostgreSQL. For example:: |
For the proper source, and other examples, please see the original gist.
| global | |
| maxconn 4096 # Total Max Connections. This is dependent on ulimit | |
| nbproc 2 | |
| log 127.0.0.1 local1 notice | |
| defaults | |
| mode http | |
| log global | |
| frontend all 0.0.0.0:80 |
| diff -crB stunnel-4.54/src/client.c stunnel-4.54-patched/src/client.c | |
| *** stunnel-4.54/src/client.c 2012-10-09 22:36:36.000000000 +0200 | |
| --- stunnel-4.54-patched/src/client.c 2012-10-16 16:49:07.755373327 +0200 | |
| *************** | |
| *** 48,53 **** | |
| --- 48,55 ---- | |
| #define SHUT_RDWR 2 | |
| #endif | |
| + #define IPLEN 40 |
| diff --git a/doc/stunnel.8 b/doc/stunnel.8 | |
| index b0204d6..7f46be0 100644 | |
| --- a/doc/stunnel.8 | |
| +++ b/doc/stunnel.8 | |
| @@ -739,6 +739,10 @@ This options has been renamed to \fInone\fR. | |
| .RE | |
| .RS 4 | |
| .RE | |
| +.IP "\fBxforwardedfor\fR = yes | no" 4 | |
| +.IX Item "xforwardedfor = yes | no" |
| diff --git a/doc/stunnel.8 b/doc/stunnel.8 | |
| index 589d968..f56f5c0 100644 | |
| --- a/doc/stunnel.8 | |
| +++ b/doc/stunnel.8 | |
| @@ -693,6 +693,10 @@ This options has been renamed to \fInone\fR. | |
| .RE | |
| .RS 4 | |
| .RE | |
| +.IP "\fBxforwardedfor\fR = yes | no" 4 | |
| +.IX Item "xforwardedfor = yes | no" |
| yum install rubygems ruby-devel | |
| yum groupinstall 'Development Tools' | |
| gem install fpm | |
| wget http://nginx.org/download/nginx-1.2.6.tar.gz | |
| tar xvf nginx-1.2.6.tar.gz | |
| cd nginx-1.2.6 | |
| ./configure \ | |
| --user=nginx \ | |
| --group=nginx \ |
| # -*- coding: utf-8 -*- | |
| ''' | |
| Created on 2012-09-24 | |
| @author: Sergey <me@seriyps.ru> | |
| How to test: | |
| $ head -c 100M /dev/urandom > static_file.bin | |
| $ python |
| from django.contrib.sessions.backends.base import SessionBase, CreateError | |
| from django.conf import settings | |
| from django.utils.encoding import force_unicode | |
| import redis | |
| class SessionStore(SessionBase): | |
| """ Redis store for sessions""" | |
| def __init__(self, session_key=None): | |
| self.redis = redis.Redis( |