21 lines
316 B
Text
21 lines
316 B
Text
|
include root-base.conf;
|
||
|
|
||
|
worker_processes 2;
|
||
|
|
||
|
user root nogroup;
|
||
|
|
||
|
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/;
|
||
|
}
|
||
|
}
|
||
|
}
|