Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm currently using MaintenanceModeMiddleware to put my site into maintenance mode, but it requires you make the change in the settings.py file on the remote server. I would like to use fabric to remotely put the site into maintenance mode. Is there a way to achieve this? Or is there a better method for doing this? Thanks.

[UPDATE]

Thanks for the feedback everyone in the end this is what I did and it works great for me, http://garthhumphreys.com/2011/06/11/painless-django-maintenance-mode-with-fabric/ - I do like the idea of uncomment lines but with my setup if I were to do that on the production server it would be overwritten once I pushed the new version out, so in the end putting the site into maintenance mode from the server level and not the django level works a lot better and is truly easier and flexible, for me at least :)

share|improve this question
this question may be related. I don't know much about fabric, and I don't mean to sound rude, but, isn't using SSH and changing one settings line fairly easy? That is a remote method – j_syk Jun 10 '11 at 16:58

2 Answers

Fabric does have commands to help you comment or uncomment lines in a given file in fabric.contrib.files. See the docs here: http://docs.fabfile.org/en/1.0.1/api/contrib/files.html

Personally I prefer to handle this at the front-end proxy rather than in a Django middleware. I would take a look at this question Show a custom 503 page if upstream is down which configures Nginx to use a custom page when the upstream is down.

share|improve this answer
but can admin/staff users still get in without 503s? The middleware seems pretty cool, especially for those of us that tend to develop on the production server. The Nginx 503 would be nice when the Django project is actually down though. – j_syk Jun 10 '11 at 21:26
@j_syk there is no reason why you couldn't use both. If the Django server is down then the middleware is not going to work and Nginx would kick in. – Mark Lavin Jun 11 '11 at 1:31
Thanks for the feedback everyone in the end this is what I did and it works great for me, garthhumphreys.com/2011/06/11/… - I do like the idea of uncomment lines but with my setup if I were to do that on the production server it would be overwritten once I pushed the new version out, so in the end putting the site into maintenance mode from the server level and not the django level works a lot better and is truly easier and flexible, for me at least :) – Garth Humphreys Jun 12 '11 at 0:21
Sorry @MarkLavin I didn't say thanks for pointing out the comments command in fabric, thanks! – Garth Humphreys Jun 12 '11 at 0:24

There is a fork of django-maintenancemode that allows to turn the maintenance mode on/off by setting a value in database. This way you can, for example, create a simple management command to toggle the maintenance mode and call it via fabric. I think it's more flexible than using mod_rewrite.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.