Skip to content

Instantly share code, notes, and snippets.

@jpoz
Created June 19, 2009 21:47
Show Gist options
  • Save jpoz/132907 to your computer and use it in GitHub Desktop.
Save jpoz/132907 to your computer and use it in GitHub Desktop.
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://127.0.0.1:3000/;
}
location /videos {
proxy_pass http://192.168.5.57/;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment