Rename the nginx configuration to remove the word enterprise
This commit is contained in:
parent
212a4650f4
commit
707bca892e
3 changed files with 2 additions and 2 deletions
22
conf/nginx-nossl.conf
Normal file
22
conf/nginx-nossl.conf
Normal 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/;
|
||||
}
|
||||
}
|
||||
}
|
Reference in a new issue