Services
Blog
Français
django-responsive-admin and django-suit are interesting new themes for Django admin.
Andrew Godwin, Django core dev and author of django-south, submitted a pull request for django to include schema migration features.
Pretty cool webcam usage demonstrated in pure HTML5
Frontend Design links are interresting, check’em out.
Seems like ReactOS is rapidely growing.
Drupal is a CMS written in PHP which supports PostgreSQL. It is made for mod_php and Apache, thought it works with uWGSI and Nginx.
When you have tried uWGSI you know why you want this.
Example nginx configuration:
server {
server_name drupal.example.com;
root /srv/drupal/www/;
error_log /tmp/nginx_drupal.log;
index index.php index.html;
location / {
try_files $uri @rewrite;
}
location @rewrite {
rewrite ^/(.*)$ /index.php?q=$1;
}
location ~* files/styles {
access_log off;
expires 30d;
try_files $uri @rewrite;
}
location ~ .php$ {
include uwsgi_params;
uwsgi_modifier1 14;
uwsgi_pass unix:/tmp/uwsgi_drupal.sock;
}
}
And an example uwsgi configuration:
Read MoreJust stumbled on django-parting which provides a nice API to partition your data.
For those not familiar with data partitioning, I recommend reading partitionning on mysql.
Check them out.
A very nice article about troubleshooting a server