comparison conf/nginx.conf @ 194:003bd800ec2a NGINX_0_3_44

nginx 0.3.44 *) Feature: the "wait" parameter in the "include" SSI command. *) Feature: the Ukrainian and Byelorussian characters were added to koi-win conversion table. *) Bugfix: in the SSI.
author Igor Sysoev <http://sysoev.ru>
date Thu, 04 May 2006 00:00:00 +0400
parents 73e8476f9142
children 3866d57d9cfd
comparison
equal deleted inserted replaced
193:2a1394604ae9 194:003bd800ec2a
24 24
25 #access_log logs/access.log main; 25 #access_log logs/access.log main;
26 26
27 sendfile on; 27 sendfile on;
28 #tcp_nopush on; 28 #tcp_nopush on;
29 #tcp_nodelay on;
30 29
31 #keepalive_timeout 0; 30 #keepalive_timeout 0;
31 keepalive_timeout 65;
32 tcp_nodelay on;
32 33
33 #gzip on; 34 #gzip on;
34 35
35 server { 36 server {
36 listen 80; 37 listen 80;
58 # fastcgi_index index.php; 59 # fastcgi_index index.php;
59 # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; 60 # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
60 # include conf/fastcgi_params; 61 # include conf/fastcgi_params;
61 #} 62 #}
62 63
63 # deny access to .htaccess files 64 # deny access to .htaccess files, if Apache's document root
65 # concurs with nginx's one
64 # 66 #
65 #location ~ /\.ht { 67 #location ~ /\.ht {
66 # deny all; 68 # deny all;
67 #} 69 #}
68 70