Skip to content

Instantly share code, notes, and snippets.

View chrisglass's full-sized avatar

Chris Glass chrisglass

View GitHub Profile
@chrisglass
chrisglass / debug_toolbar_setting
Created December 21, 2010 08:45
A magic snippet to paste in your personal.py configuration, and the debug toolbar is only enabled for superusers that pass ?debug in the url!
def show_toolbar(request):
return request.user.is_superuser and 'debug' in request.GET
DEBUG_TOOLBAR_CONFIG = {
'SHOW_TOOLBAR_CALLBACK': show_toolbar,
'MEDIA_URL': '/media/debug_toolbar/',
'INTERCEPT_REDIRECTS': False,
}
@chrisglass
chrisglass / translations.rst
Created December 2, 2010 17:31
How to create translations in django (the command line!)
../../bin/django makemessages -l it -e html,xml,py,txt
@chrisglass
chrisglass / drobo-iscsi-node.rst
Created November 29, 2010 08:30
The iscsi "default" file for a properly configured drobo

Drobo Pros tend to die and reboot if the iscsi parameters are not right on the initiator (on the client).

As such, we need to make sure the following parameters are set in the iscsi (client) configuration file for the drobo node (change this in /etc/iscsi/iscsid.conf for it to be reboot-persistent):

node.session.cmds_max = 16
node.session.queue_depth = 16
node.conn[0].tcp.window_size = 65535

A more complete article is here: http://www.thirdmartini.com/index.php/DroboPro,_iSCSI_and_Linux

@chrisglass
chrisglass / gist:700180
Created November 15, 2010 08:54
Proxy conf for apt-cacher clients
We couldn’t find that file to show.
@chrisglass
chrisglass / Apache-LDAP-Authentication
Created October 19, 2010 12:09
An example of how to configure apache to work with LDAP authentication
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from All
</Directory>
@chrisglass
chrisglass / gist:632376
Created October 18, 2010 15:18
How to let dav_svn list all the directories (instead of spitting a 403 forbidden :) )
# DONT FORGET TO RUN:
# a2ensite default-ssl
# dav_svn.conf - Example Subversion/Apache configuration
#
# For details and further options see the Apache user manual and
# the Subversion book.
#
# NOTE: for a setup with multiple vhosts, you will want to do this
# configuration in /etc/apache2/sites-available/*, not here.