voltron wrote: > I have taken the advice from this forum and have installed nginx as a > proxy to the paster server. this works well, but I´m really, really > worried about using the Paster server in a production site, for > example, when testing a Mako template, the server just died. Are there > tips out there to ensure stability? Or at least to make sure that all > types of errors are handled gracefully?
It's unlikely that the paster server is what's causing the failure. Generally a segfault comes from some C code. In-process there's no real way to handle it -- the only way is to have another process watching and restarting as necessary. If segfaults happen a lot, there's something distinctly wrong with your installation. You might find paster serve --monitor helpful; it does this process monitoring. Make sure you use the latest Paste Script if you use that option. daemontools or monit or something like that can also do the same kind of thing. Ian --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
