Cogini Blog Articles tagged nginx

Jake Morrison

Rate limiting Nginx requests

Any popular service may be the unfortunate recipient of a DDOS attack. We find that DDOS load ends up driving capacity planning, as it can easily be 10x the normal load. You can rate limit at multiple levels. You might use a service such as CloudFlare, filtering provided by your … Read more…

Jake Morrison

Serving your Phoenix app with Nginx

It's common to run web apps behind a proxy such as Nginx or HAProxy. Nginx listens on port 80, then forwards traffic to the app on another port, e.g. 4000. Following is an example nginx.conf config: user nginx; worker_processes auto; error_log /var/log/nginx/error.log … Read more…

Categories

Development DevOps Products Programming

Tags