89 lines
2.3 KiB
Plaintext
89 lines
2.3 KiB
Plaintext
ansible_ssh_user: ansible
|
|
ansible_sudo: true
|
|
|
|
di_legacy_tcpserver_list:
|
|
- port: 3000
|
|
- port: 3009
|
|
- port: 3005
|
|
logging: true
|
|
- port: 3010
|
|
logging: true
|
|
|
|
php_enable_webserver: false
|
|
php_enable_php_fpm: true
|
|
php_packages_state: latest
|
|
php_fpm_listen: /var/run/php-fpm.sock
|
|
php_fpm_listen_allowed_clients: ""
|
|
php_fpm_pool_user: "www-data"
|
|
php_fpm_daemon: php5-fpm
|
|
php_fpm_pool_conf_path: /etc/php5/fpm/pool.d/www.conf
|
|
php_packages:
|
|
- php5
|
|
- php5-cli
|
|
- php5-dev
|
|
- php5-gd
|
|
- php5-fpm
|
|
- php-pclzip
|
|
- php5-mysql
|
|
- php5-apcu
|
|
- libpcre3-dev
|
|
php_conf_paths:
|
|
- /etc/php5/cli
|
|
- /etc/php5/fpm
|
|
php_extension_conf_paths:
|
|
- /etc/php5/cli/conf.d
|
|
- /etc/php5/fpm/conf.d
|
|
php_packages_extra:
|
|
- php5-json
|
|
- php5-intl
|
|
php_date_timezone: Europe/Amsterdam
|
|
php_post_max_size: 10M
|
|
php_upload_max_filesize: 8M
|
|
php_error_reporting: "E_ALL & ~E_DEPRECATED & ~E_NOTICE & ~E_STRICT"
|
|
php_opcache_enable: "0"
|
|
|
|
di_legacy_webinterface_baseuri: https://beta.dualinventive.com
|
|
di_legacy_webinterface_secure: 10.1.1.210:3300
|
|
di_legacy_webinterface_hostname_aliases: '"beta.dualinventive.com", "rhe01", "10.1.1.210"'
|
|
|
|
nginx_remove_default_vhost: true
|
|
nginx_vhosts:
|
|
- listen: "80 default"
|
|
server_name: "_"
|
|
root: "/var/www/mtinfo.dualinventive.com/public_html/"
|
|
access_log: "/var/log/nginx/mtinfo.dualinventive.com.access.log"
|
|
error_log: "/var/log/nginx/mtinfo.dualinventive.com.error.log"
|
|
filename: mtinfo.conf
|
|
index: "index.php index.html"
|
|
extra_parameters: |
|
|
set_real_ip_from 10.1.1.247;
|
|
location = /favicon.ico {
|
|
access_log off;
|
|
log_not_found off;
|
|
}
|
|
location = /robots.txt {
|
|
access_log off;
|
|
log_not_found off;
|
|
}
|
|
location ~ /support {
|
|
auth_basic "mtinfo.dualinventive.com support scripts";
|
|
auth_basic_user_file /var/www/mtinfo.dualinventive.com/support_passwd;
|
|
include /etc/nginx/fastcgi.conf;
|
|
fastcgi_pass unix:/var/run/php-fpm.sock;
|
|
}
|
|
location / {
|
|
try_files $uri $uri/ index.php;
|
|
}
|
|
location ~ \.php$ {
|
|
include /etc/nginx/fastcgi.conf;
|
|
fastcgi_pass unix:/var/run/php-fpm.sock;
|
|
fastcgi_read_timeout 120;
|
|
}
|
|
|
|
di_legacy_webinterface_database_configs:
|
|
- name: di_zkl
|
|
host: 10.1.1.241
|
|
database: legacy_main
|
|
user: legacy_secure
|
|
passwd: legacy_secure
|