18 lines
329 B
Text
18 lines
329 B
Text
include root-base.conf;
|
|
|
|
worker_processes 2;
|
|
|
|
http {
|
|
include http-base.conf;
|
|
|
|
server {
|
|
include server-base.conf;
|
|
|
|
listen 5000 default;
|
|
|
|
location /static/ {
|
|
# checks for static file, if not found proxy to app
|
|
alias /home/jake/Projects/docker/quay/static/;
|
|
}
|
|
}
|
|
}
|