Changes between Version 1 and Version 2 of TracStandalone


Ignore:
Timestamp:
Jun 21, 2005, 1:13:36 AM (19 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracStandalone

    v1 v2  
    11= Tracd =
    22
    3 Tracd is a lightweight stand-alone Trac server. In most cases it's easier to setup and runs faster than trac.cgi.
     3Tracd は軽量なスタンドアローンの Trac サーバです。ほとんどのケースでは trac.cgi よりセットアップが簡単で、処理速度も速くなります。
    44
    5 '''Note: tracd is still experimental.'''
     5'''Note: この機能は、まだ実験段階です。'''
    66
    7 == Pros ==
     7== 利点 ==
    88
    9  * Fewer dependencies: You don't need to install apache or any other web-server.
    10  * Fast: Should be as fast as the ModPython version (much faster than the cgi).
     9 * 依存性が低い: apache その他 web サーバをインストールする必要がありません。
     10 * 速い: [http://projects.edgewall.com/trac/wiki/ModPython: ModPython] サポートバージョン並みに速いはずです(cgiよりはずっと速い)。
    1111
    12 == Cons ==
     12== 欠点 ==
    1313
    14  * Less features: Tracd implements a very simple web-server and is not as configurable as apache.
    15  * Only htdigest authentication: Tracd can currently only authenticate users against apache-htdigest files.
    16  * No native https support: [http://www.rickk.com/sslwrap/ sslwrap] can be used instead.
     14 * 機能が少ない: Tracd に実装されているwebサーバはとてもシンプルで、 apache のような詳細なコンフィギュレーションはできません。
     15 * ダイジェスト認証のみ: Tracd は現在のところ、ユーザを apache 形式の htdigest ファイルを使って認証することしかできません。
     16 * ネイティブで https をサポートしない: 代わりに [http://www.rickk.com/sslwrap/ sslwrap] を使うことができます。
    1717
    18 == Usage examples ==
     18== 使用例 ==
    1919
    20 A single project on port 8080. (http://localhost:8080/)
     20ポート 8080 に単一のプロジェクトを作成します。(http://localhost:8080/)
    2121{{{
    2222 $ tracd -p 8080 /path/to/project
    2323}}}
    24 With more than one project. (http://localhost:8080/project1/ and http://localhost:8080/project2/)
     24複数のプロジェクト(http://localhost:8080/project1/ と http://localhost:8080/project2/)
    2525{{{
    2626 $ tracd -p 8080 /path/to/project1 /path/to/project2
    2727}}}
    28 With htdigest authentication. The file /tmp/users.htdigest contain user accounts for project1 with the realm "mycompany.com".
     28Digest認証を使用。 /tmp/users.htdigest というファイルにレルム "mycompany.com" での project1のユーザアカウントの情報が格納されます。
    2929{{{
    3030 $ tracd -p 8080 --auth project1,/tmp/users.htdigest,mycompany.com /path/to/project1
     
    3333
    3434----
    35 See also: TracGuide, TracInstall, TracModPython
     35参考: TracGuide, TracInstall, TracModPython