From 0ed96a14f50dd699d977043b558927533018898f Mon Sep 17 00:00:00 2001 From: Timo Makinen Date: Sat, 25 Nov 2023 17:35:34 +0000 Subject: [PATCH] nginx_site: Serve static files from static02 --- 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 c3af36f..ad34c06 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://static01.home.foo.sh/roles/; + proxy_pass https://static02.home.foo.sh/roles/; } location /~ { - proxy_pass https://static01.home.foo.sh/~; + proxy_pass https://static02.home.foo.sh/~; }