|
daemon off;
master_process on;
worker_processes 1;
pid nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
access_log ./access.log;
error_log ./error.log;
default_type application/octet-stream;
gzip on;
sendfile on;
keepalive_timeout 65;
server {
listen 80 default;
server_name localhost foo.com;
location / {
include /etc/nginx/uwsgi_params;
uwsgi_pass 127.0.0.1:3031;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
}
# vim:filetype=nginx:
|