31 lines
1004 B
Bash
31 lines
1004 B
Bash
# Deployment-Konfiguration für GPLX
|
|
# Kopiere diese Datei als .deploy.env und fülle deine Werte ein.
|
|
# .deploy.env wird NICHT ins Git-Repository übernommen.
|
|
|
|
# SSH-Verbindung
|
|
DEPLOY_HOST=deine-server-ip-oder-domain
|
|
DEPLOY_USER=root
|
|
|
|
# Absoluter Pfad zu mediawiki/ auf dem Server
|
|
DEPLOY_MW_PATH=/var/www/gplx/mediawiki
|
|
|
|
# Absoluter Pfad zum Projektverzeichnis (eine Ebene über mediawiki/)
|
|
DEPLOY_PROJECT_PATH=/var/www/gplx
|
|
|
|
# PHP auf dem Server (Standard: php)
|
|
# DEPLOY_PHP=php
|
|
|
|
# MediaWiki-Admin-Benutzername für Seiten-Edits (Standard: Gxplex admin)
|
|
# DEPLOY_MW_USER=Gxplex admin
|
|
|
|
# ── Datenbank (nur für -Mode db) ─────────────────────────────────────────────
|
|
|
|
# Datenbank auf dem Server
|
|
DEPLOY_DB_NAME=gplx
|
|
DEPLOY_DB_USER=gplx
|
|
DEPLOY_DB_PASS=dein-db-passwort
|
|
|
|
# Lokale Datenbank (Standard: gflex_test / root ohne Passwort)
|
|
# LOCAL_DB_NAME=gflex_test
|
|
# LOCAL_MYSQLDUMP=D:\xampp\mysql\bin\mysqldump.exe
|