add Final Infrastructure Setup

This commit is contained in:
Patryk Hegenberg 2026-03-29 13:45:10 +02:00
commit 7733dde658
174 changed files with 204949 additions and 0 deletions

View file

@ -0,0 +1,76 @@
---
ftpuser: tixstream
ftppass: tixstream
# created with: mkpasswd --hash=md5
ftphash: $1$s2zr1Mjt$ie/OUvBVd85Eu3n0t8N17/
ftpgroup: tixstream
proftpd_ftp_port: 21
sftpuser: "{{ ftpuser }}"
sftppass: "{{ ftppass }}"
sftphash: "{{ ftphash }}"
sftpgroup: "{{ ftpgroup }}"
proftpd_sftp_port: 22
relay_ftp_user: fxftp
relay_ftp_password: verysecret
tixstream_express_job_manager_database_user: tixel
tixstream_express_job_manager_database_password: tixel
tixstream_express_job_manager_database_name: tixstream_express_job_manager
proftpd_txe_port: 10021
proftpd_virtual_host: 0.0.0.0
ftp_shares:
source:
name: ftp_source
protocol: "FTP"
host: "{{ current_host_config.proftpd_server_ip }}"
port: "{{ proftpd_ftp_port }}"
username: "{{ ftpuser }}"
password: "{{ ftppass }}"
directory: "src"
description: "Source FTP Share"
permissions: "2"
user_id: "1"
public: "true"
destination:
name: ftp_destination
protocol: "FTP"
host: "{{ current_host_config.proftpd_server_ip }}"
port: "{{ proftpd_ftp_port }}"
username: "{{ ftpuser }}"
password: "{{ ftppass }}"
directory: "dest"
description: "Destination FTP Share"
permissions: "6"
user_id: "1"
public: "true"
sftp_shares:
source:
name: sftp_source
protocol: "SFTP"
host: "{{ current_host_config.proftpd_server_ip }}"
port: "{{ proftpd_sftp_port }}"
username: "{{ sftpuser }}"
password: "{{ sftppass }}"
directory: "src"
description: "Source SFTP Share"
permissions: "2"
user_id: "1"
public: "true"
destination:
name: sftp_destination
protocol: "SFTP"
host: "{{ current_host_config.proftpd_server_ip }}"
port: "{{ proftpd_sftp_port }}"
username: "{{ sftpuser }}"
password: "{{ sftppass }}"
directory: "dest"
description: "Destination SFTP Share"
permissions: "6"
user_id: "1"
public: "true"
# vim:ft=ansible