source: Main/trunk/Document/input/config/index.md@ 389

Last change on this file since 389 was 279, checked in by Nishi, on Oct 8, 2024 at 9:35:07 PM

some config update

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