Config
Config
Config
Settings for the framework setup in app/Config.php
Set the timezone to your local
date_default_timezone_set('Europe/London');
Next, set the application web URL, Once the SITEURL is set it can be used to get the application address.
define('SITEURL', 'http://example.com/');
Set the base URL? if on the root of a domain it's a single '/' otherwise it's /foldername/
define('DIR', '/');
If using a database the database credentials will need adding:
define('DB_TYPE', 'mysql');
define('DB_HOST', 'localhost');
define('DB_NAME', 'database name');
define('DB_USER', 'root');
define('DB_PASS', 'root');
define('PREFIX', 'nova_');
The prefix is optional but highly recommended, it's very useful when sharing databases with other applications, to avoid conflicts. The prefix should be the starting pattern of all table names likenova_users
Nova provides a session helper class, in order to avoid session conflicts a prefix is used.
define('SESSION_PREFIX', 'nova_');
The following tells the framework what theme folder to use for views
define('TEMPLATE','default');
Set the default language
define('LANGUAGE_CODE', 'en');
set the application name:
define('SITETITLE', 'Nova');
Set encryption key - used for encrypting cookies
define('ENCRYPT_KEY', '');
By default errors are logged but not displayed, to display them set this to true
Config::set('logger', array(
'displayErrors' => false,
));
The default theme comes with a profiler, similar to browsers inspector to turn on:
Config::set('profiler', array(
'useForensics' => false,
'withDatabase' => false,
));
App
Turn debugging on by setting to true
'debug' => false
Assign the defined site url
'url' => SITEURL
Assign the site name
'name' => SITETITLE
Turn on multilingual support
'multilingual' => false,
'locale' => LANGUAGE_CODE
Assign encryption key
key' => ENCRYPT_KEY
Turn on csrf
'csrf' => true
Service providers
'providers' => array(
'Auth\AuthServiceProvider',
'Cache\CacheServiceProvider',
'Routing\RoutingServiceProvider',
'Cookie\CookieServiceProvider',
'Database\DatabaseServiceProvider',
'Encryption\EncryptionServiceProvider',
'Hashing\HashServiceProvider',
'Log\LogServiceProvider',
'Mail\MailServiceProvider',
'Pagination\PaginationServiceProvider',
'Auth\Reminders\ReminderServiceProvider',
'Session\SessionServiceProvider',
'Validation\ValidationServiceProvider',
)
Set manifest path
'manifest' => STORAGE_PATH
Set alias paths
'aliases' => array(
// The Core Tools.
'Errors' => '\Core\Error',
// The Helpers.
'Mail' => '\Helpers\Mailer',
'Assets' => '\Helpers\Assets',
'Csrf' => '\Helpers\Csrf',
'Date' => '\Helpers\Date',
'Document' => '\Helpers\Document',
'Encrypter' => '\Helpers\Encrypter',
'FastCache' => '\Helpers\FastCache',
'Form' => '\Helpers\Form',
'Ftp' => '\Helpers\Ftp',
'GeoCode' => '\Helpers\GeoCode',
'Hooks' => '\Helpers\Hooks',
'Inflector' => '\Helpers\Inflector',
'Number' => '\Helpers\Number',
'RainCaptcha' => '\Helpers\RainCaptcha',
'ReservedWords' => '\Helpers\ReservedWords',
'SimpleCurl' => '\Helpers\SimpleCurl',
'TableBuilder' => '\Helpers\TableBuilder',
'Tags' => '\Helpers\Tags',
'Url' => '\Helpers\Url',
// The Forensics Console.
'Console' => '\Forensics\Console',
// The Support Classes.
'Arr' => '\Support\Arr',
'Str' => '\Support\Str',
// The Support Facades.
'App' => '\Support\Facades\App',
'Auth' => '\Support\Facades\Auth',
'Cache' => '\Support\Facades\Cache',
'Config' => '\Support\Facades\Config',
'Cookie' => '\Support\Facades\Cookie',
'Crypt' => '\Support\Facades\Crypt',
'DB' => '\Support\Facades\Database',
'Event' => '\Support\Facades\Event',
'Hash' => '\Support\Facades\Hash',
'Input' => '\Support\Facades\Input',
'Language' => '\Support\Facades\Language',
'Mailer' => '\Support\Facades\Mailer',
'Paginator' => '\Support\Facades\Paginator',
'Password' => '\Support\Facades\Password',
'Redirect' => '\Support\Facades\Redirect',
'Request' => '\Support\Facades\Request',
'Response' => '\Support\Facades\Response',
'Session' => '\Support\Facades\Session',
'Validator' => '\Support\Facades\Validator',
'Log' => '\Support\Facades\Log'
)
Auth
Configuration options for use within the Auth system.
Set default authentication driver, can be database or extended
'driver' => 'extended'
Set authentication model
'model' => 'App\Models\User'
Set authentication table
'table' => 'users'
Password Reminder Settings
/*
| Here you may set the settings for password reminders, including a view
| that should be used as your password reminder e-mail. You will also
| be able to set the name of the table that holds the reset tokens.
|
| The "expire" time is the number of minutes that the reminder should be
| considered valid. This security feature keeps tokens short-lived so
| they have less time to be guessed. You may change this as needed.
|
*/
'reminder' => array(
'email' => 'Emails/Auth/Reminder',
'table' => 'password_reminders',
'expire' => 60,
)
Cache
Set Default storage, options: . ssdb . predis . redis . mongodb . files . sqlite . auto . apc . wincache . xcache . memcache . memcached
'storage' => 'files'
Default Path for Cache on HDD. Use full PATH like /home/username/cache. Keep it blank '', it will automatic setup for you.
Set path
'path' => STORAGE_PATH .'Cache' , // default path for files
'securityKey' => '',
FallBack Driver Example, in your code, you use memcached, apc..etc, but when you moved your web hosting until you setup your new server caching, use 'overwrite' => 'files'
'overwrite' => 'files', // whatever caching will change to 'files' and you don't need to change ur code
Default Memcache Server for all $cache
'server' => array(
array('127.0.0.1',11211,1),
)
Cache settings:
'memcache' => array(
array('127.0.0.1', 11211, 1),
//array('new.host.ip',11211,1),
),
'redis' => array(
'host' => '127.0.0.1',
'port' => '',
'password' => '',
'database' => '',
'timeout' => '',
),
'ssdb' => array(
'host' => '127.0.0.1',
'port' => 8888,
'password' => '',
'timeout' => '',
),
// use 1 as normal traditional, 2 = phpfastcache fastest as default, 3 = phpfastcache memory stable
'caching_method' => 2,
Database
Config options:
Set PDO fetch style
'fetch' => PDO::FETCH_CLASS
The Default Database Connection Name
'default' => 'mysql'
Set connections, additional databases can be used by adding additional arrays:
'connections' => array(
'sqlite' => array(
'driver' => 'sqlite',
'database' => APPDIR .'Storage' .DS .'database.sqlite',
'prefix' => '',
),
'mysql' => array(
'driver' => DB_TYPE,
'hostname' => DB_HOST,
'database' => DB_NAME,
'username' => DB_USER,
'password' => DB_PASS,
'prefix' => PREFIX,
'charset' => 'utf8',
'collation' => 'utf8_general_ci',
),
'pgsql' => array(
'driver' => 'pgsql',
'host' => 'localhost',
'database' => 'database',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'prefix' => '',
'schema' => 'public',
),
)
Languages
Array of all supported languages
Config::set('languages', array(
'cz' => array('info' => 'Czech', 'name' => '?eština', 'locale' => 'cz_CZ', 'dir' => 'ltr'),
'da' => array('info' => 'Danish', 'name' => 'Dansk', 'locale' => 'da_DK', 'dir' => 'ltr'),
'de' => array('info' => 'German', 'name' => 'Deutsch', 'locale' => 'de_DE', 'dir' => 'ltr'),
'en' => array('info' => 'English', 'name' => 'English', 'locale' => 'en_US', 'dir' => 'ltr'),
'es' => array('info' => 'Spanish', 'name' => 'Español', 'locale' => 'es_ES', 'dir' => 'ltr'),
'fa' => array('info' => 'Persian', 'name' => '?????', 'locale' => 'fa_IR', 'dir' => 'rtl'),
'fr' => array('info' => 'French', 'name' => 'Français', 'locale' => 'fr_FR', 'dir' => 'ltr'),
'it' => array('info' => 'Italian', 'name' => 'italiano', 'locale' => 'it_IT', 'dir' => 'ltr'),
'ja' => array('info' => 'Japanesse', 'name' => '???', 'locale' => 'ja_JA', 'dir' => 'ltr'),
'nl' => array('info' => 'Dutch', 'name' => 'Nederlands', 'locale' => 'nl_NL', 'dir' => 'ltr'),
'pl' => array('info' => 'Polish', 'name' => 'polski', 'locale' => 'pl_PL', 'dir' => 'ltr'),
'ro' => array('info' => 'Romanian', 'name' => 'Român?', 'locale' => 'ro_RO', 'dir' => 'ltr'),
'ru' => array('info' => 'Russian', 'name' => '????????', 'locale' => 'ru_RU', 'dir' => 'ltr'),
));
Mail settings:
Config::set('mail', array(
'driver' => 'smtp',
'host' => '',
'port' => 587,
'from' => array(
'address' => 'admin@novaframework.dev',
'name' => SITETITLE,
),
'encryption' => 'tls',
'username' => '',
'password' => '',
'sendmail' => '/usr/sbin/sendmail -bs',
// Whether or not the Mailer will pretend to send the messages.
'pretend' => true,
));
Modules
To activate modules place the module name in this array
Config::set('modules', array(
'Dashboard',
'Settings',
'Demos',
'Users',
));
Routing
These options allow routing patterns to be defined
Config::set('routing', array(
'patterns' => array(
//':hex' => '[[:xdigit:]]+',
)
));
Session
Set session options
Config::set('session', array(
'driver' => 'file', // The Session Driver used for storing Session data; supported: 'file' or 'database'.
'handler' => '\Session\FileSessionHandler', // The default Session Handler, using files for Session cache.
// Storage configuration.
'lifetime' => 180, // Number of minutes the Session is allowed to remain idle before it expires.
'files' => STORAGE_PATH .'Sessions', // File Session Handler - where the Session files may be stored.
'lottery' => array(2, 100), // Option used by the Garbage Collector, to remove the stalled Session files.
// Cookie configuration.
'cookie' => PREFIX .'session',
'path' => '/',
'domain' => null,
'secure' => false,
// weather or not will be used the Cookies encryption.
'encrypt' => true
));
Config的更多相关文章
- 一步步开发自己的博客 .NET版(11、Web.config文件的读取和修改)
Web.config的读取 对于Web.config的读取大家都很属性了.平时我们用得比较多的就是appSettings节点下配置.如: 我们对应的代码是: = ConfigurationManage ...
- Discuz NT 架构剖析之Config机制
接触了Discuz NT! 一段时间了,是时候做个总结了,标题好霸气,有木有? 都是托园子里的大牛代振军的福啊,哈哈哈哈. 首先论坛的信息不是完全存储在数据库里面的,一部分信息存储在config文件里 ...
- [笔记]HAproxy reload config file with uninterrupt session
HAProxy is a high performance load balancer. It is very light-weight, and free, making it a great op ...
- MyBatis2:config.xml文件
前言 前一篇文章,讲了MyBatis入门,讲到了MyBatis有两个基本的配置文件,一个用来配置环境信息,一个用来写SQL语句.前者我把它命名为config.xml,config.xml的内容是: & ...
- 搞了我一下午竟然是web.config少写了一个点
Safari手机版居然有个这么愚蠢的bug,浪费了我整个下午,使尽浑身解数,国内国外网站搜索解决方案,每一行代码读了又想想了又读如此不知道多少遍,想破脑袋也想不通到底哪里出了问题,结果竟然是web.c ...
- WCF中,通过C#代码或App.config配置文件创建ServiceHost类
C# static void Main(string[] args) { //创建宿主的基地址 Uri baseAddress = new Uri("http://localhost:808 ...
- myeclipse 无法启动 java.lang.IllegalStateException: Unable to acquire application service. Ensure that the org.eclipse.core.runtime bundle is resolved and started (see config.ini).
把myeclipse10 按照目录完整拷贝到了另外一台电脑, 另外的目录 原安装目录 D\:\soft\i\myeclipse10 新安装目录 E\:\soft\myeclipse10 双击启动失败, ...
- PHP扩展-如何使用文件config.m4
config.m4文件用于指定正在开发的扩展在类unix系统下构建时支持的选项,指定此扩展需要哪些库以及哪些源文件:使用 GNU autoconf 语法编写.注意需要重新执行phpize,config ...
- RabbitMQ Config
默认访问地址:http://localhost:15672/ 要想修改内网访问: %APPDATA%\RabbitMQ\ 目录下添加文件 rabbitmq.config [ {rabbit, [%% ...
- C# 读取app.config配置文件 节点键值,提示 "配置系统未能初始化" 错误的解决方案
新建C#项目,在app.config中添加了appSettings项,运行时出现"配置系统未能初始化"的错误,MSDN里写到,如果配置文件中包含 configSections 元素 ...
随机推荐
- 【转】UINavigationBar 使用总结
原文网址:http://www.jianshu.com/p/f0d3df54baa6 UINavigationBar是我们在开发过程中经常要用到的一个控件,下面我会为大家介绍一些常用的用法. 1. 设 ...
- 序列化类型为XX的对象时检测到循环引用
/// 产品列表展示 /// </summary> /// <returns></returns> ) { //获得所有组别 Galasys_IBLL.IT_BIZ ...
- C# 随机读写入文件
先来代码再解释 public Worker(string path) { FileStream fs = new FileStream( path, FileMode.OpenOrCreate, Fi ...
- activemq 一个不错的ppt
http://people.apache.org/~jstrachan/talks/ActiveMQ-Dublin07.pdf
- Struts2 url传递中文出现乱码
项目所有的编码都改为了utf-8.在tomcat的 server.xml中修改下面这段 <Connector port="8080" protocol="HTTP/ ...
- 获取本机IP地址和MAC地址
unit NetFunc; interface uses SysUtils, Windows, dialogs, winsock, Classes, ComObj, WinInet, Variants ...
- [C++]VisualAssistX中文注释提示错误 解决办法
问题情况:Visual Assist X中文注释为提醒注释错误,而且在注释下面以红线标.问题原因:这是因为Visual Assist X认为中文的注释是拼写错误.问题处理: 1.打开 Microsof ...
- Qt 固定窗口【worldsing 笔记】
w.setWindowFlags(Qt::WindowMinimizeButtonHint); //禁止最大化按钮 w.setFixedSize(1024,587);//固定窗口大小
- css3种方法实现元素的绝对居中
元素的绝对居中应该是很多人熟悉的一个小应用,我记得很多年前去神州数码面试的时候就遇到过这个面试题.方法比较简单,代码如下: .node{ width : 300px; height : 400px; ...
- JAVA的设计模式之单例设计模式
1.确保一个类只有一个实例,自行提供这个实例并向整个系统提供这个实例. 1)理论 Java Singleton模式主要作用是保证在Java应用程序中,一个类Class只有一个实例存在. 使用Singl ...