免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3520 | 回复: 2
打印 上一主题 下一主题

[Web] 请教一个 windows下安装nginx遇到的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-06-20 10:29 |只看该作者 |倒序浏览
【问题描述】

情况好的话,刚启动时貌似很正常,到是基本上点几下就不再反映了。有时候启动之后一次也点不开。

进程都在,就是打不开页面。

我从最新的1.0.4开始,到1.0.3、1.0.2、1.0.1、0.8.54都试了,都是这样。

在win7和xp下试验的结果一样。

【我的目的是】:

1,以demo4ph或者weboa开头的URL是静态文件(html、js、css、xml、图片、xsl)直接使用本地的。
2,其它URL都转到7001端口的服务器上去处理。

【我的配置文件如下】:

#user nobody;
worker_processes 3;

#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
error_log logs/error.log;
#pid logs/nginx.pid;


events {
  worker_connections 1024;
}


http {
  include mime.types;
  default_type application/octet-stream;

  #log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  # '$status $body_bytes_sent "$http_referer" '
  # '"$http_user_agent" "$http_x_forwarded_for"';

  #access_log logs/access.log main;

  sendfile on;
  #tcp_nopush on;

  #keepalive_timeout 0;
  #keepalive_timeout 65;
  keepalive_timeout 16;

  #gzip on;
   
  upstream backend_server {   
  server 127.0.0.1:7001;
}  

  server {
  listen 80;
  server_name 192.168.1.101;

  #charset koi8-r;

  #access_log logs/host.access.log main;

  location ~ ^/demo4ph/ {
  #root e:/lotus/Domino851/data/domino/html;
  root d:/lotus_ws/Domino703/data/domino/html;
  expires 30m;
  }

  location ~ ^/weboa/ {
  #root e:/lotus/Domino851/data/domino/html;
  root d:/lotus_ws/Domino703/data/domino/html;
  expires 30m;
  }
   
  location / {   
  #root html;
  #index index.html index.htm;
  proxy_pass http://backend_server;   
  }
   
# location / {
# root html;
# index index.html index.htm;
# }

  #error_page 404 /404.html;

  # redirect server error pages to the static page /50x.html
  #
  error_page 500 502 503 504 /50x.html;
  location = /50x.html {
  root html;
  }

  }
}

论坛徽章:
0
2 [报告]
发表于 2011-06-20 10:30 |只看该作者
错误日志为空。

访问日志貌似正常。内容如下(重启nginx之前清空过):


192.168.1.101 - - [18/Jun/2011:19:03:41 +0800] "GET /names.nsf HTTP/1.1" 401 188 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.64"
192.168.1.101 - admin [18/Jun/2011:19:03:47 +0800] "GET /names.nsf HTTP/1.1" 200 744 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.64"
192.168.1.101 - admin [18/Jun/2011:19:03:47 +0800] "GET /names.nsf/Top?OpenPage HTTP/1.1" 200 863 "http://192.168.1.101/names.nsf" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.64"
192.168.1.101 - admin [18/Jun/2011:19:03:47 +0800] "GET /names.nsf/Bottom?OpenPage HTTP/1.1" 200 850 "http://192.168.1.101/names.nsf" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.64"
192.168.1.101 - admin [18/Jun/2011:19:03:48 +0800] "GET /names.nsf/wOutline?OpenPage HTTP/1.1" 200 2123 "http://192.168.1.101/names.nsf" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.64"
192.168.1.101 - admin [18/Jun/2011:19:03:48 +0800] "GET /names.nsf/cssForm?ReadForm HTTP/1.1" 200 2809 "http://192.168.1.101/names.nsf/Top?OpenPage" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.64"
192.168.1.101 - admin [18/Jun/2011:19:03:48 +0800] "GET /domjava/WriteHtmlArgument.js HTTP/1.1" 200 93 "http://192.168.1.101/names.nsf/wOutline?OpenPage" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.64"
192.168.1.101 - admin [18/Jun/2011:19:03:48 +0800] "GET /names.nsf/People?OpenView HTTP/1.1" 200 12284 "http://192.168.1.101/names.nsf" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.64"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /names.nsf/cssForm?ReadForm HTTP/1.1" 200 2809 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.64"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /names.nsf/WebJSTools?OpenJavaScriptLibrary HTTP/1.1" 200 21895 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.64"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /names.nsf/WebJSNavigationTools?OpenJavaScriptLibrary HTTP/1.1" 200 7354 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /names.nsf/WebJSClassTransfer?OpenJavaScriptLibrary HTTP/1.1" 200 2168 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /names.nsf/WebJSViewTemplate?OpenJavaScriptLibrary HTTP/1.1" 200 2164 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /names.nsf/btnVwSelectAll.gif?OpenImageResource HTTP/1.1" 200 470 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /names.nsf/btnVwDeselectAll.gif?OpenImageResource HTTP/1.1" 200 460 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /names.nsf/btnVwCollapseAll.gif?OpenImageResource HTTP/1.1" 200 455 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /names.nsf/btnVwPrevious.gif?OpenImageResource HTTP/1.1" 200 488 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /names.nsf/btnVwFirst.gif?OpenImageResource HTTP/1.1" 200 703 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /names.nsf/btnVwExpandAll.gif?OpenImageResource HTTP/1.1" 200 326 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /icons/ecblank.gif HTTP/1.1" 200 45 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /names.nsf/btnVwNext.gif?OpenImageResource HTTP/1.1" 200 489 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /names.nsf/btnVwLast.gif?OpenImageResource HTTP/1.1" 200 704 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /names.nsf/btnVwSearchFT.gif?OpenImageResource HTTP/1.1" 200 359 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /names.nsf/btnVwSearch.gif?OpenImageResource HTTP/1.1" 200 346 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /domjava/outline.cab HTTP/1.1" 200 57639 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /domjava/actionbar.cab HTTP/1.1" 200 23241 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /icons/ascsort.gif HTTP/1.1" 200 95 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:49 +0800] "GET /names.nsf/pgEmpty?OpenPage HTTP/1.1" 200 539 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:50 +0800] "GET /names.nsf/btnNewDoc.gif?OpenImageResource HTTP/1.1" 200 213 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:50 +0800] "GET /domjava/netscape/security/PrivilegeManager.class HTTP/1.1" 404 159 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"

192.168.1.101 - admin [18/Jun/2011:19:03:50 +0800] "GET /names.nsf/8bd254c7a4fbca6b85256a450072c65d?ReadEntries HTTP/1.1" 200 9034 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:50 +0800] "GET /names.nsf/twisty.gif?OpenImageResource HTTP/1.1" 200 93 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olPeople.gif?OpenImageResource HTTP/1.1" 200 573 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olOrganizations.gif?OpenImageResource HTTP/1.1" 200 148 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olAlternateLang.gif?OpenImageResource HTTP/1.1" 200 398 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olCertExp.gif?OpenImageResource HTTP/1.1" 200 197 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olPolicies.gif?OpenImageResource HTTP/1.1" 200 141 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olPolicySettings.gif?OpenImageResource HTTP/1.1" 200 122 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olGroups.gif?OpenImageResource HTTP/1.1" 200 608 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olDenyGroups.gif?OpenImageResource HTTP/1.1" 200 652 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /icons/folder.gif HTTP/1.1" 200 895 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olServers.gif?OpenImageResource HTTP/1.1" 200 364 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /icons/view.gif HTTP/1.1" 200 898 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olMessaging.gif?OpenImageResource HTTP/1.1" 200 186 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olMailInDb.gif?OpenImageResource HTTP/1.1" 200 182 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olReplication.gif?OpenImageResource HTTP/1.1" 200 120 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olClusters.gif?OpenImageResource HTTP/1.1" 200 246 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olDirectories.gif?OpenImageResource HTTP/1.1" 200 179 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olWeb.gif?OpenImageResource HTTP/1.1" 200 103 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olCertificates.gif?OpenImageResource HTTP/1.1" 200 136 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /names.nsf/olHolidays.gif?OpenImageResource HTTP/1.1" 200 175 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:51 +0800] "GET /favicon.ico HTTP/1.1" 200 1406 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:54 +0800] "GET /names.nsf/85255e01001356a8852554c200753106/21be3b2d5cf0089648257853003ea23c?OpenDocument HTTP/1.1" 200 27292 "http://192.168.1.101/names.nsf/People?OpenView" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:54 +0800] "GET /names.nsf/cssForm?ReadForm HTTP/1.1" 200 2809 "http://192.168.1.101/names.nsf/85255e01001356a8852554c200753106/21be3b2d5cf0089648257853003ea23c?OpenDocument" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:54 +0800] "GET /names.nsf/WebJSTools?OpenJavaScriptLibrary HTTP/1.1" 200 21895 "http://192.168.1.101/names.nsf/85255e01001356a8852554c200753106/21be3b2d5cf0089648257853003ea23c?OpenDocument" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:55 +0800] "GET /names.nsf/WebJSNavigationTools?OpenJavaScriptLibrary HTTP/1.1" 200 7354 "http://192.168.1.101/names.nsf/85255e01001356a8852554c200753106/21be3b2d5cf0089648257853003ea23c?OpenDocument" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:55 +0800] "GET /names.nsf/btnEdit.gif?OpenImageResource HTTP/1.1" 200 227 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:55 +0800] "GET /names.nsf/bgTabUnselected.gif?OpenImageResource HTTP/1.1" 200 732 "http://192.168.1.101/names.nsf/85255e01001356a8852554c200753106/21be3b2d5cf0089648257853003ea23c?OpenDocument" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:55 +0800] "GET /names.nsf/people?OpenImageResource HTTP/1.1" 200 17100 "http://192.168.1.101/names.nsf/85255e01001356a8852554c200753106/21be3b2d5cf0089648257853003ea23c?OpenDocument" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:03:55 +0800] "GET /names.nsf/btnCancel.gif?OpenImageResource HTTP/1.1" 200 233 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin [18/Jun/2011:19:03:55 +0800] "GET /icons/fileatt.gif HTTP/1.1" 200 180 "http://192.168.1.101/names.nsf/85255e01001356a8852554c200753106/21be3b2d5cf0089648257853003ea23c?OpenDocument" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:04:07 +0800] "GET /apps/homepage2.nsf HTTP/1.1" 200 606 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:04:08 +0800] "GET /apps/homepage2.nsf/getTemplate?readform& HTTP/1.1" 200 8746 "http://192.168.1.101/apps/homepage2.nsf" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:04:08 +0800] "GET /apps/homepage2.nsf/showSysMenu?readform& HTTP/1.1" 200 6505 "http://192.168.1.101/apps/homepage2.nsf" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:04:08 +0800] "GET /demo4ph/js/jquery1.4.3.min.js HTTP/1.1" 200 77746 "http://192.168.1.101/apps/homepage2.nsf/getTemplate?readform&" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:04:08 +0800] "GET /demo4ph/css/print.css HTTP/1.1" 200 671 "http://192.168.1.101/apps/homepage2.nsf/getTemplate?readform&" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:04:08 +0800] "GET /demo4ph/js/frontend.package.1-1-97.js HTTP/1.1" 200 0 "http://192.168.1.101/apps/homepage2.nsf/getTemplate?readform&" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:04:08 +0800] "GET /demo4ph/js/functions.js HTTP/1.1" 200 629 "http://192.168.1.101/apps/homepage2.nsf/getTemplate?readform&" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:04:08 +0800] "GET /demo4ph/js/jquery.hcheckbox/jquery-hcheckbox.js HTTP/1.1" 200 1394 "http://192.168.1.101/apps/homepage2.nsf/getTemplate?readform&" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:04:08 +0800] "GET /demo4ph/js/superfish-1.4.8/js/hoverIntent.js HTTP/1.1" 200 3174 "http://192.168.1.101/apps/homepage2.nsf/getTemplate?readform&" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:04:08 +0800] "GET /demo4ph/css/middle.css HTTP/1.1" 200 642 "http://192.168.1.101/apps/homepage2.nsf/getTemplate?readform&" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:04:08 +0800] "GET /demo4ph/css/style.css HTTP/1.1" 200 43173 "http://192.168.1.101/apps/homepage2.nsf/getTemplate?readform&" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:04:08 +0800] "GET /demo4ph/js/userhomepage.js HTTP/1.1" 200 2254 "http://192.168.1.101/apps/homepage2.nsf/getTemplate?readform&" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"
192.168.1.101 - admin [18/Jun/2011:19:04:08 +0800] "GET /demo4ph/css/modshare.css HTTP/1.1" 200 7015 "http://192.168.1.101/apps/homepage2.nsf/getTemplate?readform&" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648)"

论坛徽章:
0
3 [报告]
发表于 2011-06-20 16:01 |只看该作者
目前感觉是官方的windows版(zip)有问题,我使用Nginx 1.0.4 for Windows
http://www.kevinworthington.com/nginx-1-0-4-windows/)貌似就正常了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP