From 4b269fba0ca273dfa3acf44c9f5490f01e0c3d87 Mon Sep 17 00:00:00 2001 From: Trevor Bramwell Date: Fri, 22 Sep 2017 12:23:36 -0700 Subject: Rename pharos-dashboard and pharos-validator As subdirectories of the pharos-tools repo, there is little need to keep the pharos prefix. Change-Id: Ica3d79411f409df638647300036c0664183c2725 Signed-off-by: Trevor Bramwell --- .../config/nginx/pharos_dashboard.conf | 24 ---------------------- 1 file changed, 24 deletions(-) delete mode 100644 pharos-dashboard/config/nginx/pharos_dashboard.conf (limited to 'pharos-dashboard/config/nginx/pharos_dashboard.conf') diff --git a/pharos-dashboard/config/nginx/pharos_dashboard.conf b/pharos-dashboard/config/nginx/pharos_dashboard.conf deleted file mode 100644 index 87b6f8e..0000000 --- a/pharos-dashboard/config/nginx/pharos_dashboard.conf +++ /dev/null @@ -1,24 +0,0 @@ -upstream web { - ip_hash; - server web:8000; -} - -# portal -server { - listen 80; - server_name localhost; - charset utf-8; - - location /static { - alias /static; - } - - location /media { - alias /media; - } - - location / { - proxy_set_header Host $host; - proxy_pass http://web/; - } -} -- cgit 1.2.3-korg