summary refs log tree commit diff
path: root/bin/up.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/up.sh')
-rw-r--r--bin/up.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/up.sh b/bin/up.sh
index 8febee95..92e0f110 100644
--- a/bin/up.sh
+++ b/bin/up.sh
@@ -2,6 +2,7 @@
 set -eu
 
 readonly Host='temp.causal.agency'
+readonly Root='/var/www'
 
 upload() {
 	src=$1
@@ -9,7 +10,7 @@ upload() {
 	ts=$(date +'%s')
 	rand=$(openssl rand -hex 4)
 	url=$(printf '%s/%x%s.%s' "$Host" "$ts" "$rand" "$ext")
-	scp -q "$src" "${Host}:/usr/local/www/${url}"
+	scp -q "$src" "${Host}:${Root}/${url}"
 	echo "https://${url}"
 }