Subversion Repositories Tewi

Rev

Rev 272 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 272 Rev 279
Line 1... Line 1...
1
\language ^en$
1
\language ^en$
2
# Configuration {User guide}
2
# Configuration {User guide}
-
 
3
Tewi HTTPd config gets parsed line by line.\
-
 
4
Front tabs/spaces get ignored.
-
 
5
 
-
 
6
## Example
-
 
7
```
-
 
8
# This is a comment
-
 
9
# Listen to port 80
-
 
10
Listen 80
-
 
11
 
-
 
12
# /var/www is the document root
-
 
13
DocumentRoot /var/www
-
 
14
 
-
 
15
# Default MIME
-
 
16
MIMEType all application/octet-stream
-
 
17
 
-
 
18
# Use mime.types from Apache HTTPd
-
 
19
MIMEFile /etc/mime.types
-
 
20
 
-
 
21
# Show this file if it is in the directory
-
 
22
DirectoryIndex index.html
-
 
23
BeginDirectory /var/www
-
 
24
	Allow all
-
 
25
EndDirectory
-
 
26
```
3
\language ^jp$
27
\language ^jp$
4
# コンフィグ {ユーザーガイド}
28
# コンフィグ {ユーザーガイド}
-
 
29
Tewi HTTPdのコンフィグは行ずつに処理されます。\
-
 
30
先頭のタブ文字と空白文字は無視されます。
-
 
31
 
-
 
32
## 例
-
 
33
```
-
 
34
# これはコメントです
-
 
35
# ポート80にListenする
-
 
36
Listen 80
-
 
37
 
-
 
38
# /var/wwwにドキュメントが置かれている
-
 
39
DocumentRoot /var/www
-
 
40
 
-
 
41
# デフォルトのMIME
-
 
42
MIMEType all application/octet-stream
-
 
43
 
-
 
44
# Apache HTTPdのmime.typesを使用
-
 
45
MIMEFile /etc/mime.types
-
 
46
 
-
 
47
# このファイルがディレクトリにあったら、それを見せる
-
 
48
DirectoryIndex index.html
-
 
49
BeginDirectory /var/www
-
 
50
	Allow all
-
 
51
EndDirectory
-
 
52
```