# Template server URL Code Block |
---|
TEMPLATE_SERVER_URL='http://templates-manager.onapp.com/' |
# IPs (separated with coma) list for the snmp to trap
# OnApp Control Panel custom version
# OnApp MySQL/MariaDB connection data (database.yml)
Code Block |
---|
ONAPP_CONN_WAIT_TIMEOUT=15
ONAPP_CONN_POOL=30
ONAPP_CONN_RECONNECT='true'
ONAPP_CONN_ENCODING='utf8'
ONAPP_CONN_SOCKET='/var/lib/mysql/mysql.sock' |
# MySQL/MariaDB server configuration data (in case of local server)
Code Block |
---|
MYSQL_WAIT_TIMEOUT=604800
MYSQL_MAX_CONNECTIONS=500
MYSQL_PORT=3306 |
# Use MariaDB instead of MySQL as OnApp database server
# Configure the database server relative amount of available RAM
Code Block |
---|
TUNE_DB_SERVER=0 |
# The number of C data structures that can be allocated before triggering the garbage collector. It defaults to 8 million
Code Block |
---|
RUBY_GC_MALLOC_LIMIT=16000000 |
# sysctl.conf net.core.somaxconn value
Code Block |
---|
NET_CORE_SOMAXCONN=2048 |
# The root of OnApp database dump directory (on the Control Panel box)
Code Block |
---|
ONAPP_DB_DUMP_ROOT= |
# Remote server's (to store database dumps) IP, user, path, openssh connection options ans number of dumps to keep
Code Block |
---|
DB_DUMP_SERVER=
DB_DUMP_USER=root
DB_DUMP_SERVER_ROOT=/onapp/backups
DB_DUMP_SERVER_SSH_OPT="-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o PasswordAuthentication=no"
KEEP_DUMPS=168
DB_DUMP_CRON='40 * * * *' |
# Enable monit - tool for managing and monitoring Unix systems
# If enabled (the 1 value is set) - install (if local box) and configures RabbitMQ Server (messaging system) for the vCloud support.
Code Block |
---|
ENABLE_RABBITMQ=1 |
# Rotate transactions' log files created more then TRANS_LOGS_ROTATE_TIME day(s) ago
Code Block |
---|
TRANS_LOGS_ROTATE_TIME=30 |
# Maximum allowed for uploading file size in bytes, from 0 (meaning unlimited) to 2147483647 (2GB). Default is 1GB
Code Block |
---|
MAX_UPLOAD_SIZE=1073741824 |
# Timeout before ping Redis Server to check if it is started. Default is 5 sec.
Code Block |
---|
REDIS_PING_TIMEOUT=5 |
# OnApp Control Panel SSL certificates (please do not change if you aren't familar with SSL certificates) # * The data below to generate self-signed PEM-encoded X.509 certificate
Code Block |
---|
SSL_CERT_COUNTRY_NAME=UK
SSL_CERT_ORGANIZATION_NAME='OnApp Limited'
SSL_CERT_ORGANIZATION_ALUNITNAME='OnApp Cloud'
SSL_CERT_COMMON_NAME=`hostname --fqdn 2>/dev/null` |
# SSLCertificateFile, SSLCertificateKeyFile Apache directives' values # ssl_certificate, ssl_certificate_key Nginx directives' values
Code Block |
---|
SSLCERTIFICATEFILE=/etc/pki/tls/certs/ca.crt
SSLCERTIFICATECSRFILE=/etc/pki/tls/private/ca.csr
SSLCERTIFICATEKEYFILE=/etc/pki/tls/private/ca.key |
# * PEM-encoded CA Certificate (if custom one exists) # SSLCACertificateFile, SSLCertificateChainFile Apache directives' values # ssl_client_certificate Nginx directives' values
Code Block |
---|
SSLCACERTIFICATEFILE=
SSLCERTIFICATECHAINFILE= |
# SSLCipherSuite, SSLProtocol Apache directives' values # ssl_ciphers, ssl_protocols Nginx directives' values
Code Block |
---|
SSLCIPHERSUITE=
SSLPROTOCOL= |
|