Skip to content

Instantly share code, notes, and snippets.

@eatonphil
Created May 28, 2015 12:10
Show Gist options
  • Save eatonphil/a9a86f5d2c92cb5f0705 to your computer and use it in GitHub Desktop.
Save eatonphil/a9a86f5d2c92cb5f0705 to your computer and use it in GitHub Desktop.
OWebl Nginx Bare Minimum Config
upstream app {
least_conn;
server localhost:9090;
}
server {
listen 80;
# Uncomment these if you want nginx to serve your static files.
#location ~ \.(png|jpeg|jpg|css|js|ico|ttf|woff) {
# root /home/.../static;
#}
location / {
proxy_pass http://app;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment