1 |
nishi |
1.1 |
\language ^en$ |
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 |
|
|
``` |
27 |
|
|
\language ^jp$ |
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 |
|
|
``` |