From 820bd3f6f41729ae64b7b061ef939d6c9413ec4c Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 9 Oct 2015 15:12:51 -0600 Subject: [PATCH] teuthology: Serve logs under /teuthology Signed-off-by: Zack Cerza --- roles/teuthology/templates/nginx.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/roles/teuthology/templates/nginx.conf b/roles/teuthology/templates/nginx.conf index ce7a6db8..d83afb28 100644 --- a/roles/teuthology/templates/nginx.conf +++ b/roles/teuthology/templates/nginx.conf @@ -3,6 +3,8 @@ server { allow all; autoindex on; server_name {{ inventory_hostname }}; - root /home/teuthworker/archive; + location /teuthology { + alias /home/teuthworker/archive; + } default_type text/plain; } -- 2.47.3