From 0d621444c91afe8c8e1d3e45b0f6540d885090f0 Mon Sep 17 00:00:00 2001 From: Timo Makinen Date: Tue, 12 Sep 2023 22:16:15 +0000 Subject: [PATCH] nginx/site: Move static data to static01 --- roles/nginx/site/templates/www.foo.sh.conf.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/nginx/site/templates/www.foo.sh.conf.j2 b/roles/nginx/site/templates/www.foo.sh.conf.j2 index ad34c06..c3af36f 100644 --- a/roles/nginx/site/templates/www.foo.sh.conf.j2 +++ b/roles/nginx/site/templates/www.foo.sh.conf.j2 @@ -3,9 +3,9 @@ } location /roles/ { - proxy_pass https://static02.home.foo.sh/roles/; + proxy_pass https://static01.home.foo.sh/roles/; } location /~ { - proxy_pass https://static02.home.foo.sh/~; + proxy_pass https://static01.home.foo.sh/~; }