comparison conf/nginx.conf @ 0:f0b350454894 NGINX_0_1_0

nginx 0.1.0 *) The first public version.
author Igor Sysoev <http://sysoev.ru>
date Mon, 04 Oct 2004 00:00:00 +0400
parents
children 4b2dafa26fe2
comparison
equal deleted inserted replaced
-1:000000000000 0:f0b350454894
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 }