chore: prepare switching to sftp source for buspro xml data

This commit is contained in:
2026-09-03 16:33:17 +02:00
parent 357c43eead
commit 332406532f
2 changed files with 11 additions and 6 deletions
+2
View File
@@ -62,6 +62,8 @@ APP_BPN_CRM_ID_TEAMER=1070
APP_DEFAULT_EMAIL_FROM=[email protected]
APP_DEFAULT_EMAIL_TO=[email protected]
XML_EXPORT_PATH="%kernel.project_dir%/var/xmlexport"
SFTP_XML_EXPORT_HOST=
SFTP_XML_EXPORT_PORT=22
SFTP_XML_EXPORT_USER=
+9 -6
View File
@@ -2,12 +2,15 @@
flysystem:
storages:
xml_export.storage:
sftp:
host: '%env(SFTP_XML_EXPORT_HOST)%'
port: '%env(int:SFTP_XML_EXPORT_PORT)%'
username: '%env(SFTP_XML_EXPORT_USER)%'
password: '%env(SFTP_XML_EXPORT_PASSWORD)%'
root: '%env(SFTP_XML_EXPORT_ROOT)%'
local:
directory: '%env(resolve:XML_EXPORT_PATH)%'
# SFTP source (enable when switching from local XML files)
# sftp:
# host: '%env(SFTP_XML_EXPORT_HOST)%'
# port: '%env(int:SFTP_XML_EXPORT_PORT)%'
# username: '%env(SFTP_XML_EXPORT_USER)%'
# password: '%env(SFTP_XML_EXPORT_PASSWORD)%'
# root: '%env(SFTP_XML_EXPORT_ROOT)%'
xml_dump.storage:
local:
directory: '%kernel.project_dir%/var/bpn'