Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
# Timezone
ln -sf /usr/share/zoneinfo/Australia/Sydney /etc/localtime
#Using script from http://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_cloudwatch_logs.html
# Install awslogs and the jq JSON parser
yum install -y awslogs jq aws-cli
# ECS config
@lethaldose
lethaldose / nginx-tuning.md
Created March 6, 2018 00:47 — forked from denji/nginx-tuning.md
NGINX tuning for best performance

Moved to git repository: https://github.com/denji/nginx-tuning

NGINX Tuning For Best Performance

For this configuration you can use web server you like, i decided, because i work mostly with it to use nginx.

Generally, properly configured nginx can handle up to 400K to 500K requests per second (clustered), most what i saw is 50K to 80K (non-clustered) requests per second and 30% CPU load, course, this was 2 x Intel Xeon with HyperThreading enabled, but it can work without problem on slower machines.

You must understand that this config is used in testing environment and not in production so you will need to find a way to implement most of those features best possible for your servers.

## install openresty mac os x 10.11 with brew
brew install openssl
brew upgrade pcre
export KERNEL_BITS=64
cd openresty-1.9.7.3/
./configure --with-cc-opt='-I/usr/local/Cellar/pcre/8.39/include/ -I/usr/local/Cellar/openssl/1.0.2h_1/include/' \
--with-ld-opt='-L/usr/local/Cellar/pcre/8.39/lib -L/usr/local/Cellar/openssl/1.0.2h_1/lib' -j4
make && sudo make install