diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-03-19 13:48:30 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-03-19 13:48:30 +0800 |
commit | 8c5fbe1c8923303b45b93429da5b42f5bea4bba1 (patch) | |
tree | 3bf36979c7da78d6ad79c7828dc67bcee00e2e43 /sample/pttbbs.conf | |
parent | 8f95d356b5377113375a7efc55d2f177103db5f4 (diff) | |
download | pttbbs-8c5fbe1c8923303b45b93429da5b42f5bea4bba1.tar pttbbs-8c5fbe1c8923303b45b93429da5b42f5bea4bba1.tar.gz pttbbs-8c5fbe1c8923303b45b93429da5b42f5bea4bba1.tar.bz2 pttbbs-8c5fbe1c8923303b45b93429da5b42f5bea4bba1.tar.lz pttbbs-8c5fbe1c8923303b45b93429da5b42f5bea4bba1.tar.xz pttbbs-8c5fbe1c8923303b45b93429da5b42f5bea4bba1.tar.zst pttbbs-8c5fbe1c8923303b45b93429da5b42f5bea4bba1.zip |
- (setup) update sample config files
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4009 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'sample/pttbbs.conf')
-rw-r--r-- | sample/pttbbs.conf | 40 |
1 files changed, 16 insertions, 24 deletions
diff --git a/sample/pttbbs.conf b/sample/pttbbs.conf index 01fb388c..9a68e15a 100644 --- a/sample/pttbbs.conf +++ b/sample/pttbbs.conf @@ -1,15 +1,26 @@ /* $Id: pttbbs.conf,v 1.14 2003/07/06 03:41:08 in2 Exp $ */ -/* 請注意! 這個檔案是批踢踢實業坊(telnet://ptt2.cc)的設定值, - * 這個設定在硬體資源足夠的前題下, 可以提供給上萬個人同時在線上. 若您的硬 - * 體資源並不足夠, 也不須負荷這麼多註冊人數/看板/上線人數, 請您務必要將相 - * 關設定值改小, 否則將會使用掉極為大量的記憶體. - */ + /* 定義 BBS 站名位址 */ #define BBSNAME "新批踢踢" /* 中文站名 */ #define BBSENAME "PTT2" /* 英文站名 */ #define MYHOSTNAME "ptt2.cc" /* 網路位址 */ #define MYIP "140.112.30.143" /* IP位址 */ +/* 下列資訊為系統效能,預設值為普通小系站規模 */ + +/* 最多註冊人數, 每個人會用掉 21 bytes 的 shared-memory */ +#define MAX_USERS (10000) + +/* 最多同時上線人數, 每個人會用掉 3456 bytes 的 shared-memory */ +#define MAX_ACTIVE (512) + +/* 最大開板個數, 每個會用掉 6420 bytes 的 shared-memory */ +#define MAX_BOARD (1024) + +/* 最大 CPU負荷, 超過的時候將拒絕 login */ +#define MAX_CPULOAD (300) + + /* BBSMNAME 是系統名,出現在系統寄信、通知等等。 * 現在你可以改變這個名字,但強烈建議名字別超過 3 個字元 * 請保持像 [Ptt系統警察] 這種仍能塞進 IDLEN 的格式 @@ -21,13 +32,6 @@ #define BBSMNAME2 "Ptt" #define MONEYNAME "Ptt" -/* 為減少假 email 利用 source 算出註冊碼, 我們改用新的公式。 - * 下面這個是起始的種子值,請改成任意字串 (1~13 chars) */ -#define REGCODE_MAGIC "pttbbs" - -/* 想減低系統安全性、讓人易於釣魚騙資料請開啟 */ -//#define LOW_SECURITY - /* 定義系統資訊 */ #define BBSUSER "bbs" #define BBSUID 9999 @@ -90,18 +94,6 @@ /* 可以設定多重進站畫面 */ #define MULTI_WELCOME_LOGIN -/* 最大 CPU負荷, 超過的時候將拒絕 login */ -#define MAX_CPULOAD (400) - -/* 最多註冊人數, 每個人會用掉 21 bytes 的 shared-memory */ -#define MAX_USERS (150000) - -/* 最多同時上線人數, 每個人會用掉 3456 bytes 的 shared-memory */ -#define MAX_ACTIVE (4096) - -/* 最大開板個數, 每個會用掉 6420 bytes 的 shared-memory */ -#define MAX_BOARD (8192) - /* 主題式閱讀搜尋範圍,文章多可試著加大,但小心對效能影響 */ #define THREAD_SEARCH_RANGE (500) |