Files
summitwave_landing/deploy_to_hetzner.sh
2025-12-18 15:36:13 +01:00

66 lines
1.4 KiB
Bash
Executable File

#!/bin/bash
# Deploy SummitWave landing page to Hetzner public_html via SFTP
# === CONFIGURATION ===
SERVER="www269.your-server.de"
USER="summitb"
REMOTE_DIR="public_html"
LOCAL_DIR="$(dirname \"$0\")/src"
# === UPLOAD ===
echo "Uploading website files to $USER@$SERVER:$REMOTE_DIR ..."
sftp $USER@$SERVER <<EOF
cd $REMOTE_DIR
put -r $LOCAL_DIR/index.html
put -r $LOCAL_DIR/impressum.html
put -r $LOCAL_DIR/robots.txt
put -r $LOCAL_DIR/sitemap.xml
put -r $LOCAL_DIR/.htaccess
# Hauptbilder der Landingpage
mkdir img
cd img
put -r $LOCAL_DIR/img/*
cd ..
# Manual (HTML + Bilder + PHP + Logs)
mkdir manual
cd manual
# statische HTML-Variante (Fallback / Direktaufrufe)
put -r $LOCAL_DIR/manual/index.html
# PHP-basierte Manual-/Login-Dateien
put -r $LOCAL_DIR/manual/.htaccess
put -r $LOCAL_DIR/manual/index.php
put -r $LOCAL_DIR/manual/login.php
put -r $LOCAL_DIR/manual/auth.config.php
put -r $LOCAL_DIR/manual/auth.php
put -r $LOCAL_DIR/manual/logout.php
# Manual-Bilder
put -r $LOCAL_DIR/manual/beacon-front.jpg
mkdir img
cd img
put -r $LOCAL_DIR/manual/img/*
cd ..
# Manual-Zertifikat (Download)
mkdir cert
cd cert
put -r $LOCAL_DIR/manual/cert/*
cd ..
# Log-Verzeichnis für Zugriffsprotokolle
mkdir logs
cd logs
put -r $LOCAL_DIR/manual/logs/access.log
cd ..
cd ..
bye
EOF
echo "Deployment complete. Visit your site to verify: http://summitwave.eu/"
# BiLqHib8s5Ag2FmL