mirror of
https://github.com/GrapheneOS/matrix.grapheneos.org.git
synced 2025-07-25 07:35:27 -04:00
enable brotli/gzip via precompression for Element
This commit is contained in:
parent
a653d8bd2f
commit
740b720285
4 changed files with 57 additions and 1 deletions
33
deploy_static
Executable file
33
deploy_static
Executable file
|
@ -0,0 +1,33 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -o errexit -o nounset -o pipefail
|
||||
|
||||
./process_static
|
||||
|
||||
remote=root@element.grapheneos.org
|
||||
active=$(ssh $remote readlink /srv/element.grapheneos.org)
|
||||
|
||||
if [[ $active = /srv/element.grapheneos.org_a ]]; then
|
||||
target=/srv/element.grapheneos.org_b
|
||||
else
|
||||
target=/srv/element.grapheneos.org_a
|
||||
fi
|
||||
|
||||
echo active is $active
|
||||
echo target is $target
|
||||
echo
|
||||
|
||||
ssh $remote rm -rf $target
|
||||
ssh $remote cp -a $active $target
|
||||
rsync -rpcv --chmod=D755,F644 --delete static_tmp/ $remote:$target
|
||||
ssh $remote sync -f $target
|
||||
ssh $remote ln -snf $target /srv/element.grapheneos.org
|
||||
ssh $remote sync .
|
||||
|
||||
sed -i "s|/srv/element.grapheneos.org|$target|" nginx.conf.tmp
|
||||
rsync -rpcv --chmod=D755,F644 --delete nginx.conf.tmp $remote:/etc/nginx/nginx.conf
|
||||
ssh $remote sync -f /etc/nginx/nginx.conf
|
||||
ssh $remote nginx -s reload
|
||||
|
||||
echo
|
||||
echo active is now $target
|
Loading…
Add table
Add a link
Reference in a new issue