27 lines
781 B
YAML
27 lines
781 B
YAML
---
|
|
# Netcup Inventar für PHP-Projekt (Fixed paths)
|
|
|
|
all:
|
|
hosts:
|
|
netcup-server:
|
|
ansible_host: 94.16.110.151
|
|
ansible_user: deploy
|
|
ansible_ssh_private_key_file: /home/michael/.ssh/staging
|
|
|
|
# Server-Details
|
|
domain: "test.michaelschiemer.de"
|
|
ssl_email: "kontakt@michaelschiemer.de"
|
|
|
|
# App-Konfiguration
|
|
app_name: "michaelschiemer"
|
|
app_port: 8000
|
|
|
|
# Pfad zu deinem Projekt (ABSOLUT!)
|
|
local_app_path: "/home/michael/dev/michaelschiemer" # Absoluter Pfad zu deinem Hauptprojekt
|
|
|
|
# Umgebungsvariablen für deine App (wird in .env geschrieben)
|
|
app_env:
|
|
APP_ENV: "production"
|
|
DATABASE_URL: "sqlite:///app/data/app.db"
|
|
# Füge hier weitere ENV-Variablen hinzu die deine App braucht
|