From 64a15db91b8779717495990970c0f12503f9d2e7 Mon Sep 17 00:00:00 2001 From: Chris Meyers Date: Tue, 18 Oct 2016 15:51:01 -0400 Subject: [PATCH] fix nginx static files using --- tools/docker-compose/nginx.vh.default.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/docker-compose/nginx.vh.default.conf b/tools/docker-compose/nginx.vh.default.conf index a7e2d7329f..cd3f6bf30a 100644 --- a/tools/docker-compose/nginx.vh.default.conf +++ b/tools/docker-compose/nginx.vh.default.conf @@ -21,7 +21,7 @@ server { location /static/ { root /tower_devel; - try_files /awx/ui/static /awx/static /awx/public/static =404; + try_files /awx/ui/$uri /awx/$uri /awx/public/$uri =404; access_log off; }