This post is not related to production deployment automation. This post is our voice of experience (read as: major issues caused due by "minor" missing server configurations) and how we resolved them. These are changes that would help you in case you are dealing with Upgrading your server stack that uses HAProxy and SSL (We were using EngineYard)! … Continue reading Pro-tips for production server setup (when shit hits the roof)
Tag: nginx
Why Do You Choose WebSocket Over Nginx
How often do you find that the awesome movie seats you have painstakingly chosen for yourself, is suddenly not available when you proceed to pay for it. "Damn it! Just missed!" you say. Wouldn't it be great to be guaranteed the seat you selected everytime! The problem with the above scenario (as is with most … Continue reading Why Do You Choose WebSocket Over Nginx
Setting Up Nginx With Maximum Upload Size
>Edit nginx configuration and look for html block. Inside html block add following line. http { include conf/mime.types; default_type application/octet-stream; client_max_body_size 10m; ....} In above configuration "application/octet-stream" supports any kind of file upload.