Rename the nginx configuration to remove the word enterprise

This commit is contained in:
Jake Moshenko 2014-05-18 17:28:51 -04:00
parent 212a4650f4
commit 707bca892e
3 changed files with 2 additions and 2 deletions

22
conf/nginx-nossl.conf Normal file
View file

@ -0,0 +1,22 @@
include root-base.conf;
worker_processes 2;
user root nogroup;
daemon off;
http {
include http-base.conf;
server {
include server-base.conf;
listen 80 default;
location /static/ {
# checks for static file, if not found proxy to app
alias /static/;
}
}
}