15
This commit is contained in:
21
beispiele/15/schubertdaniel.conf
Normal file
21
beispiele/15/schubertdaniel.conf
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
|
||||
<VirtualHost 144.76.58.9:80 [2a01:4f8:191:6204:0:0:0:2]:80 >
|
||||
|
||||
ServerName www.schubertdaniel.de
|
||||
ServerAlias schubertdaniel.de
|
||||
|
||||
DocumentRoot /home/dany/www/schubertdaniel
|
||||
DirectoryIndex index.php index.html
|
||||
|
||||
CustomLog /home/dany/www/log/schubertdaniel.log common
|
||||
|
||||
Header set Content-Language: de
|
||||
|
||||
<Directory /home/dany/www/schubertdaniel>
|
||||
AllowOverride All # ermöglicht .htaccess
|
||||
Require all granted # öffentlich zugänglich
|
||||
Options -Indexes # kein Inhaltslisting
|
||||
</Directory>
|
||||
|
||||
</VirtualHost>
|
34
beispiele/15/wp-backup.sh
Normal file
34
beispiele/15/wp-backup.sh
Normal file
@@ -0,0 +1,34 @@
|
||||
#!/bin/bash
|
||||
|
||||
function db_backup {
|
||||
|
||||
# Vars
|
||||
host=localhost
|
||||
user=XXXXXXX
|
||||
pass=XXXXXXX
|
||||
db=wordpress
|
||||
|
||||
echo 'DB Export ------> '
|
||||
mysqldump --opt --add-drop-table -h$host -u$user -p$pass $db | gzip > wp-db.sql.gz
|
||||
}
|
||||
|
||||
function file_backup {
|
||||
backupfile="wordpress-backup.tar"
|
||||
|
||||
echo 'File Backup --- building tar File...'
|
||||
tar -cf $backupfile ~/wp*
|
||||
echo '+DONE'
|
||||
}
|
||||
|
||||
|
||||
echo '-------------------------------------------'
|
||||
echo 'Tolles Backup Script'
|
||||
echo '-------------------------------------------'
|
||||
|
||||
backupdir=backup
|
||||
|
||||
cd ~ ; mkdir $backupdir && cd $backupdir || { echo "FEHLER!!!!"; exit 1 }
|
||||
|
||||
# Funktionsaufrufe
|
||||
db_backup
|
||||
file_backup
|
Reference in New Issue
Block a user