Search Results

0
votes

Spambots are cluttering my log file [Django]

Yes, it should be a 404, not a 500. 500 indicates something is trying to deal with the URL and is failing in the process. You need to find and fix that. We have a similar p …
0
votes

help needed with Lighttpd and Apache cofiguration with Django

This is the kind of stuff I use rsync for. Do whatever you like on the main server and then periodically (or on demand) rsync push to the static server. Rsync is faster (and more featureful) than a …
0
votes

How to force the use of SSL for some URL of my Django Application ?

We used some simple middleware to check urls against a list of base urls that must be in HTTPS mode, all others are forced to HTTP mode. The big caveat here is that any POST data can be lo …