openrat-cms

# OpenRat Content Management System
git clone http://git.code.weiherhei.de/openrat-cms.git
Log | Files | Refs

docker.yml (845B)


      1 
      2 # OpenRat CMS Configuration
      3 #
      4 
      5 login:
      6   motd: "${env:CMS_MOTD}"
      7 
      8 database-default:
      9   default-id:  db
     10 
     11 
     12 database:
     13   db:
     14     enabled    :  true                 #  set this to 'true' for using this connection
     15     dsn        :  "${env:DB_TYPE}:host=${env:DB_HOST}; dbname=${env:DB_NAME}"
     16     description:  "PDO"
     17     name       :  "PRO"
     18     type       :  pdo
     19     user       :  ${env:DB_USER}
     20     password   :  ${env:DB_PASS}
     21     base64     :  true                 #  store binary as BASE64 (in postgresql 7.x set this to 'true')
     22     prefix     :  cms_
     23     suffix     :  _or
     24     persistent :  yes                   #  use persistent connections (try this, it's faster)
     25     charset    :  UTF-8
     26     cmd        :  ""
     27     prepare    :  true
     28     transaction:  true
     29 
     30 
     31 production: true
     32 
     33 application:
     34 	name: "${env:CMS_NAME}"
     35 	operator: "${env:CMS_OPERATOR}"