../../bin/django makemessages -l it -e html,xml,py,txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | |
} |
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerAdmin webmaster@localhost | |
DocumentRoot /var/www | |
<Directory /> | |
Options FollowSymLinks | |
AllowOverride None | |
Order deny,allow | |
Deny from All | |
</Directory> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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. |
NewerOlder