1. 应老大要求,研究了一下Mongoose服务器,在网上搜了一下资料还真少,以下内容是我通过网上整理的资料:  
  2.  
  3. 官网地址:http://code.google.com/p/mongoose/  
  4.  
  5. Mongoose的老家在Google Codec网站,属于开放源代码小型Web服务器,轻量级、高性能是它的主要优点,其他特色也不少:  
  6.     多平台支持。目前支持Windows、Linux、UNIX和Mac。   
  7.     CGI、SSL和SSI支持,还支持Digest(MD5)身份认证,断点续传。   
  8.     基于IP的访问限制。   
  9.     很小巧。Windows下大小为60KB,Linux下更是只有40KB。   
  10.     支持多种编程语言。目前的2.8版本支持C/C++、Python、C#,到2.9版本将多支持Ruby、Lua等。   
  11.  
  12.  
  13. 配置mongoose.conf文件即可支持PHP,以下是我配置的内容:  
  14.  
  15. error_log_file error.log  
  16. cgi_extensions php  
  17. # cgi_environment <value> 
  18. # put_delete_passwords_file <value> 
  19. cgi_interpreter c:\root\php-cgi.exe  
  20. # protect_uri <value> 
  21. # authentication_domain mydomain.com  
  22. # ssi_extensions .shtml,.shtm  
  23. # access_log_file <value> 
  24. # ssl_chain_file <value> 
  25. # enable_directory_listing yes  
  26.  
  27. # global_passwords_file <value> 
  28.  index_files index.html,index.htm,index.cgi  
  29. # enable_keep_alive no  
  30. # access_control_list <value> 
  31. # max_request_size 16384  
  32.  
  33. # extra_mime_types <value> 
  34. #端口  
  35.   listening_ports 8092  
  36. #指定网站根目录,指到本人的Apache服务器里(根据自己的需要配置)  
  37. document_root D:\http  
  38. # ssl_certificate <value> 
  39. # num_threads 10  
  40. # run_as_user <value>