#user nobody;
worker_processes 4;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
pid /var/run/nginx/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log;
# memcached debug
#log_format mem '[$request] -- $memcached_key';
#access_log /var/log/nginx/memcached.log mem;
sendfile on;
tcp_nopush on;
tcp_nodelay off;
keepalive_timeout 2;
gzip on;
gzip_proxied any;
gzip_comp_level 9;
gzip_types text/plain text/html text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
gzip_buffers 16 8k;
gzip_static on;
gzip_http_version 1.1;
gzip_disable "MSIE [1-6].(?!.*SV1)";
gzip_vary on;
upstream thin_pool_app {
server 127.0.0.1:4568;
}
upstream thin_pool_widget {
server 127.0.0.1:4567;
}
server {
listen 80;
server_name localhost;
root /home/fau/buzz/public/;
index index.html index.htm;
error_page 500 502 503 504 /500.html;
location ~ /.svn/ {
deny all;
}
location /nginx_status_test {
stub_status on;
access_log off;
}
location /popular {
default_type text/html;
set $memcached_key $uri;
memcached_pass 127.0.0.1:11211;
error_page 404 502 @fallback_app;
}
location /link {
default_type text/html;
set $memcached_key $uri;
memcached_pass 127.0.0.1:11211;
error_page 404 502 @fallback_app;
}
location /widget {
internal;
default_type text/html;
set $memcached_key $request_uri;
memcached_pass 127.0.0.1:11211;
error_page 404 500 502 @fallback_widget;
}
location / {
if (-f $request_filename) {
access_log off
expires 30d;
break;
}
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_max_temp_file_size 0;
proxy_intercept_errors on;
if (!-f $request_filename) {
proxy_pass http://thin_pool_app;
break;
}
}
location @fallback_app {
internal;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_max_temp_file_size 0;
proxy_intercept_errors on;
proxy_pass http://thin_pool_app;
}
location @fallback_widget {
internal;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_max_temp_file_size 0;
proxy_intercept_errors on;
proxy_pass http://thin_pool_widget;
}
}
}