From 44134c95f151cab47d7229d61caedcaf9721fe73 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Thu, 12 May 2022 17:03:54 -0400 Subject: [PATCH] add nginx mime.types configuration to deployment --- deploy-static | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy-static b/deploy-static index e0e818be..b7556d08 100755 --- a/deploy-static +++ b/deploy-static @@ -35,6 +35,7 @@ for server in ${servers[@]}; do sed "s|/srv/grapheneos.org|$target|" nginx-tmp/nginx.conf > nginx-tmp/nginx.conf.root rsync -rptcv --fsync --chmod=D755,F644 --delete nginx-tmp/nginx.conf.root $remote:/etc/nginx/nginx.conf + rsync -rptcv --fsync --chmod=D755,F644 --delete nginx-tmp/mime.types $remote:/etc/nginx/mime.types rsync -rptcv --fsync --chmod=D755,F644 --delete nginx-tmp/snippets/ $remote:/etc/nginx/snippets ssh $remote nginx -s reload