16 lines
481 B
Bash
16 lines
481 B
Bash
#!/usr/bin/env bash
|
||
# Astrion 官网一键部署:本仓库 demo/ → 服务器 /var/www/astrion/
|
||
# 用法:bash deploy_website.sh
|
||
# --delete 会删除服务器上本仓库没有的文件(已豁免 .well-known,certbot 续期用)。
|
||
set -euo pipefail
|
||
|
||
SRC="$(cd "$(dirname "$0")/demo" && pwd)/"
|
||
DEST="59.110.19.30:/var/www/astrion/"
|
||
|
||
rsync -az --delete \
|
||
--exclude='.DS_Store' \
|
||
--exclude='.well-known/' \
|
||
"$SRC" "$DEST"
|
||
|
||
echo "Deployed → https://astrion.cyjai.com"
|