comparison conf/nginx.conf @ 450:551102312e19 release-0.1.0

nginx-0.1.0-RELEASE import *) The first public version.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 04 Oct 2004 15:04:06 +0000
parents
children 295d97d70c69
comparison
equal deleted inserted replaced
449:3b1e8c9df9ad 450:551102312e19
1
2 user nobody;
3 worker_processes 3;
4
5 #error_log logs/error.log;
6 #pid logs/nginx.pid;
7
8
9 events {
10 connections 1024;
11 }
12
13
14 http {
15 include conf/mime.types;
16 default_type application/octet-stream;
17
18 sendfile on;
19
20 #gzip on;
21
22 server {
23 listen 80;
24
25 charset on;
26 source_charset koi8-r;
27
28 #access_log logs/access.log;
29
30 location / {
31 root html;
32 index index.html index.htm;
33 }
34
35 }
36
37 }