;
; Required configs
;
ENVIRONMENT=0 ; Environment PRODUCTION = 1 / DEVELOPMENT = 0
OUTPUT_PERFORMANCE_STATS=1 ; Add Performance Stats in JSON output: 1 = true / 0 = false
DISABLE_REQUESTS_VIA_PROXIES=1 ; 1 = true / 0 = false
; API authentication modes - Token / Session (Cookie based Sessions)
sessionMode='File' ; For Cookie based Session - File, MySql, PostgreSql, MongoDb, Redis, Memcached, Cookie
maxConcurrentLogin=2 ; simultaneous login limit
concurrentAccessInterval=60 ; Concurrent Access Interval in Seconds
; Data Representation: JSON/XML/XSLT/HTML/PHP
iRepresentation='JSON' ; JSON/XML - Input Data Representation
oRepresentation='JSON' ; JSON/XML/XSLT/HTML/PHP - Output Data Representation
payloadKeyInResponse='Payload'
; Default perPage (records per page)
defaultPerPage=10
maxResultsPerPage=1000
; Global Auto-Increment counter detail
gCounter='global_counter' ; Key or Table
gCounterMode='Cache' ; Globally configured Cache / Database
; Settings to avoid Idempotent request
idempotentSecret='changeme' ; hash_hmac secret
|