source: branches/dev/data/conf/core.php @ 14724

Revision 14724, 1.6 KB checked in by kakinaka, 17 years ago (diff)
RevLine 
[14724]1<?php
[8]2/*
[17]3 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
[8]4 *
5 * http://www.lockon.co.jp/
6 */
7
8///////////////////////////////////////////////////////////
9/*
10    ¥µ¥¤¥È¤´¤È¤Ëɬ¤ºÊѹ¹¤¹¤ëÀßÄê
11*/
12///////////////////////////////////////////////////////////
13
14// DB¥¨¥é¡¼¥á¡¼¥ëÁ÷¿®Àè
15define ("DB_ERROR_MAIL_TO", "error-ml@lockon.co.jp");
16
17// DB¥¨¥é¡¼¥á¡¼¥ë·ï̾
18define ("DB_ERROR_MAIL_SUBJECT", "OS_TEST_ERROR");
19
20if(defined('DB_TYPE') && defined('DB_USER') && defined('DB_PASSWORD') && defined('DB_SERVER') && defined('DB_PORT') && defined('DB_NAME')) {
21    // ¥µ¥¤¥ÈÍÑDB
22    define ("DEFAULT_DSN", DB_TYPE . "://" . DB_USER . ":" . DB_PASSWORD . "@" . DB_SERVER . ":" .DB_PORT . "/" . DB_NAME);
23}
24
25// ͹ÊØÈÖ¹æÀìÍÑDB
26define ("ZIP_DSN", DEFAULT_DSN);
27
28define ("USER_URL", SITE_URL."user_data/"); // ¥æ¡¼¥¶¡¼ºîÀ®¥Ú¡¼¥¸Åù
29
30// ǧ¾ÚÍÑ magic
31define ("AUTH_MAGIC", "31eafcbd7a81d7b401a7fdc12bba047c02d1fae6");
32
[14360]33//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
34// WEBÉé²Ùʬ»¶ÀßÄê
[14693]35define ("MULTI_WEB_SERVER_MODE", false);    // Éé²Ùʬ»¶¥â¡¼¥É(true:ON false:OFF)
[14360]36
37/*
38 *  host:IP¥¢¥É¥ì¥¹¤Ç»ØÄꤹ¤ë¡£
39 *  user:FTP¥æ¡¼¥¶
40 *  pass:FTP¥Ñ¥¹¥ï¡¼¥É
41 */
42$arrWEB_SERVERS = array(
[14596]43    array('host_name' => 'web1', 'host' => '127.0.0.1',   'user' => 'users', 'pass' => 'pass'),        // WEB¥µ¡¼¥Ð1
44    array('host_name' => 'web2', 'host' => 'host2',   'user' => 'users', 'pass' => 'pass'),        // WEB¥µ¡¼¥Ð2
[14360]45);
46//////////////////////////////////////////////////////////////////////////////////?///////////////////////////////////////////
47
48
[8]49?>
Note: See TracBrowser for help on using the repository browser.