| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- [general]
- page.name = "New awesome project"
- application.name = "newAwesomeProject"
- [web]
- response.browser_caching_enabled = true
- response.caching_enabled = true
- response.default_headers[] = "Cache-Control: no-cache"
- response.default_headers[] = "Strict-Transport-Security: max-age=31536000; includeSubDomains"
- response.default_headers[] = "Content-Security-Policy: script-src 'self'"
- response.default_headers[] = "X-Frame-Options: SAMEORIGIN"
- response.default_headers[] = "X-Content-Type-Options: nosniff"
- response.default_headers[] = "Referrer-Policy: no-referrer-when-downgrade"
- response.default_headers[] = "Permissions-Policy: microphone=(), usb=()"
- view.caching_enabled = true
- locale_aliases[de_CH] = "de"
- [web : development]
- response.browser_caching_enabled = false
- response.caching_enabled = false
- view.caching_enabled = false
- [routing]
- ; controllers[] = "/{locale}/example > example\controller\ExampleController"
- locales[] = "de_CH"
- [mail]
- mail_sending_enabled = false
- default_addresser = "info@example.com"
- address.system_manager = "exceptions@hnm.ch"
- address.customer = "info@example.com"
- address.notification_recipients[] = "info@example.com"
- [mail : live]
- mail_sending_enabled = true
- [io]
- public.file_permission = 0644
- public.dir_permission = 0755
- private.file_permission = 0600
- private.dir_permission = 0700
- [io: development]
- public.file_permission = 0664
- public.dir_permission = 0775
- private.file_permission = 0660
- private.dir_permission = 0770
- [io: test]
- public.file_permission = 0664
- public.dir_permission = 0775
- private.file_permission = 0660
- private.dir_permission = 0770
- [error]
- ; if true php warnings cause exceptions and an error_view is shown
- strict_attitude = true
- startup.detect_errors = true
- ; error_view.default = "atusch\view\status.html"
- ; error_view.404 = "atusch\view\notFound.html"
- log.save_detail_info = false
- log.send_mail = false
- log.mail_recipient = "exceptions@hnm.ch"
- [error : live]
- strict_attitude = false
- log.save_detail_info = true
- log.send_mail = true
- ;log.handle_http_status_exceptions = true
- ;log.excluded_http_status_exceptions[] = 404
- [database : live]
- default.dsn_uri = "mysql:host=localhost;dbname=internship_playground"
- default.user = "dbuser"
- default.password = "pass"
- default.transaction_isolation_level = "SERIALIZABLE"
- default.dialect = "n2n\impl\persistence\meta\mysql\MysqlDialect"
- [database : development]
- default.dsn_uri = "mysql:host=localhost;dbname=internship_playground"
- default.user = "root"
- default.password = ""
- default.transaction_isolation_level = "SERIALIZABLE"
- default.dialect = "n2n\impl\persistence\meta\mysql\MysqlDialect"
- [database : test]
- default.dsn_uri = "sqlite::memory:"
- default.dialect = "n2n\impl\persistence\meta\sqlite\SqliteDialect"
- default.user = ""
- default.password = ""
- [orm]
- ; entities[] = "example\bo\Example"
- [locales]
- default = "en"
- admin = "de_CH"
|