diff options
author | Markus Warg <markus@mawaunix.mawa.sls> | 2010-03-31 16:43:49 +0200 |
---|---|---|
committer | Markus Warg <markus@mawaunix.mawa.sls> | 2010-03-31 16:43:49 +0200 |
commit | 4f4c5ce3ccf0370f926d75e700e8b0bd2208f3f6 (patch) | |
tree | 82cb017ac68772ea36c0f522ec019bf14fbdc77a /manager/application/configs | |
parent | 8398c9048d34a1f51212ae770998fc082fc93b69 (diff) | |
download | cacert-mgr-4f4c5ce3ccf0370f926d75e700e8b0bd2208f3f6.tar.gz cacert-mgr-4f4c5ce3ccf0370f926d75e700e8b0bd2208f3f6.tar.xz cacert-mgr-4f4c5ce3ccf0370f926d75e700e8b0bd2208f3f6.zip |
initial setup of framework code
enabled features
* login
* crt login
* top / left menu
* logging
* db layer
Diffstat (limited to 'manager/application/configs')
-rw-r--r-- | manager/application/configs/application.ini | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/manager/application/configs/application.ini b/manager/application/configs/application.ini new file mode 100644 index 0000000..61edc99 --- /dev/null +++ b/manager/application/configs/application.ini @@ -0,0 +1,56 @@ +[production]
+phpSettings.display_startup_errors = 1
+phpSettings.display_errors = 1
+includePaths.library = LIBRARY_PATH
+bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
+bootstrap.class = "Bootstrap"
+resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
+resources.frontController.noViewRenderer = 0
+resources.frontController.noErrorHandler = 0
+resources.frontController.useDefaultControllerAlways = 0
+resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts"
+resources.view[] =
+
+; Database settings for Session DB
+ca_mgr.db.session.pdo = "Pdo_Mysql"
+ca_mgr.db.session.autocleanup = 1
+ca_mgr.db.session.host = "localhost"
+ca_mgr.db.session.username = "front_session"
+ca_mgr.db.session.password = "laskdsfzrwethv45"
+ca_mgr.db.session.dbname = "ca_mgr"
+
+; Database settings for Auth DB (CACert User Table)
+ca_mgr.db.auth.pdo = "Pdo_Mysql"
+ca_mgr.db.auth.host = "localhost"
+ca_mgr.db.auth.username = "ca_mgr"
+ca_mgr.db.auth.password = "jsdfhsd47534hsdf7"
+ca_mgr.db.auth.dbname = "cacert"
+ca_mgr.db.auth.tablename = "users"
+
+; Database settings for Auth DB (Manager User Table)
+ca_mgr.db.auth2.pdo = "Pdo_Mysql"
+ca_mgr.db.auth2.host = "localhost"
+ca_mgr.db.auth2.username = "ca_mgr"
+ca_mgr.db.auth2.password = "jsdfhsd47534hsdf7"
+ca_mgr.db.auth2.dbname = "ca_mgr"
+ca_mgr.db.auth2.tablename = "system_user"
+
+; Database settings for Config DB (access to system_config and dnssecme data tables)
+ca_mgr.db.config.pdo = "Pdo_Mysql"
+ca_mgr.db.config.host = "localhost"
+ca_mgr.db.config.username = "ca_mgr"
+ca_mgr.db.config.password = "jsdfhsd47534hsdf7"
+ca_mgr.db.config.dbname = "ca_mgr"
+
+; Application name for logger
+log.application = "web"
+
+[staging : production]
+
+[testing : production]
+phpSettings.display_startup_errors = 1
+phpSettings.display_errors = 1
+
+[development : production]
+phpSettings.display_startup_errors = 1
+phpSettings.display_errors = 1
\ No newline at end of file |