歡迎您光臨本站 註冊首頁

請教一個 windows下安裝nginx遇到的問題

←手機掃碼閱讀     火星人 @ 2014-03-04 , reply:0

請教一個 windows下安裝nginx遇到的問題

【問題描述】

情況好的話,剛啟動時貌似很正常,到是基本上點幾下就不再反映了。有時候啟動之後一次也點不開。

進程都在,就是打不開頁面。

我從最新的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;
  }

  }
}
《解決方案》

錯誤日誌為空。

訪問日誌貌似正常。內容如下(重啟nginx之前清空過):


192.168.1.101 - - "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.648)"
192.168.1.101 - admin "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.648)"
192.168.1.101 - admin "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.648)"
192.168.1.101 - admin "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.648)"
192.168.1.101 - admin "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.648)"
192.168.1.101 - admin "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.648)"
192.168.1.101 - admin "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.648)"
192.168.1.101 - admin "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.648)"
192.168.1.101 - admin "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.648)"
192.168.1.101 - admin "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.648)"
192.168.1.101 - admin "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 "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 "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 "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 "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 "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 "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 "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 "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 "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 "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 "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 "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 "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 "GET /domjava/outline.cab HTTP/1.1" 200 57639 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /domjava/actionbar.cab HTTP/1.1" 200 23241 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "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 "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 "GET /names.nsf/btnNewDoc.gif?OpenImageResource HTTP/1.1" 200 213 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /domjava/netscape/security/PrivilegeManager.class HTTP/1.1" 404 159 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"

192.168.1.101 - admin "GET /names.nsf/8bd254c7a4fbca6b85256a450072c65d?ReadEntries HTTP/1.1" 200 9034 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/twisty.gif?OpenImageResource HTTP/1.1" 200 93 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olPeople.gif?OpenImageResource HTTP/1.1" 200 573 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olOrganizations.gif?OpenImageResource HTTP/1.1" 200 148 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olAlternateLang.gif?OpenImageResource HTTP/1.1" 200 398 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olCertExp.gif?OpenImageResource HTTP/1.1" 200 197 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olPolicies.gif?OpenImageResource HTTP/1.1" 200 141 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olPolicySettings.gif?OpenImageResource HTTP/1.1" 200 122 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olGroups.gif?OpenImageResource HTTP/1.1" 200 608 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olDenyGroups.gif?OpenImageResource HTTP/1.1" 200 652 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /icons/folder.gif HTTP/1.1" 200 895 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olServers.gif?OpenImageResource HTTP/1.1" 200 364 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /icons/view.gif HTTP/1.1" 200 898 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olMessaging.gif?OpenImageResource HTTP/1.1" 200 186 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olMailInDb.gif?OpenImageResource HTTP/1.1" 200 182 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olReplication.gif?OpenImageResource HTTP/1.1" 200 120 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olClusters.gif?OpenImageResource HTTP/1.1" 200 246 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olDirectories.gif?OpenImageResource HTTP/1.1" 200 179 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olWeb.gif?OpenImageResource HTTP/1.1" 200 103 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olCertificates.gif?OpenImageResource HTTP/1.1" 200 136 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "GET /names.nsf/olHolidays.gif?OpenImageResource HTTP/1.1" 200 175 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "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 "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 "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 "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 "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 "GET /names.nsf/btnEdit.gif?OpenImageResource HTTP/1.1" 200 227 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "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 "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 "GET /names.nsf/btnCancel.gif?OpenImageResource HTTP/1.1" 200 233 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Win32)"
192.168.1.101 - admin "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 "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 "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 "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 "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 "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 "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 "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 "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 "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 "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 "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 "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 "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)"
《解決方案》

目前感覺是官方的windows版(zip)有問題,我使用Nginx 1.0.4 for Windows
(http://www.kevinworthington.com/nginx-1-0-4-windows/)貌似就正常了。

[火星人 ] 請教一個 windows下安裝nginx遇到的問題已經有815次圍觀

http://coctec.com/docs/service/show-post-14445.html