diff --git a/README.md b/README.md index 1a61bed..443ac2c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # HttpWebServer ## 项目简介 -​ HttpWebServer是一个轻量级高性能的HTTP的web服务器,服务开发框架是Qt和nginx组合的HTTP服务器开发框架。Nginx能够支撑5万并发连接,实际生产环境中可以支撑2~4万并发连接数,Nginx服务器,在3万并发连接下,开启10个Nginx进程消耗150MB内存。Qt 是一个优秀的 C++ 应用程序框架,在一定程度上你获得的是一个“一站式”的解决方案:不再需要研究 STL,不再需要 C++ 的,不再需要到处去找解析 XML、连接数据库、访问网络的各种第三方库,因为 Qt 自己内置了这些技术。把nginx框架预先编译成动态库,当作Qt模块的动态库一样。编译程序通过prf文件,查找链接所需要nginx动态库。pro工程文件包含2个子工程,分别是nginx主程序编译成执行程序,nginx请求处理的程序编译程动态库。C程序调用c++程序,使用了c++11的__cplusplus宏定义。 +​ HttpWebServer是一个轻量级高性能的HTTP的web服务器,服务开发框架是Qt和nginx组合的HTTP服务器开发框架。Nginx能够支撑5万并发连接,实际生产环境中可以支撑2~4万并发连接数,Nginx服务器,在3万并发连接下,开启10个Nginx进程消耗150MB内存。Qt 是一个优秀的 C++ 应用程序框架,在一定程度上你获得的是一个“一站式”的解决方案:不再需要研究 STL,不再需要 C++ 的,不再需要到处去找解析 XML、连接数据库、访问网络的各种第三方库,因为 Qt 自己内置了这些技术。把nginx框架预先编译成动态库,当作Qt模块的动态库一样。编译程序通过prf文件,查找链接所需要nginx动态库。pro工程文件包含2个子工程,分别是nginx主程序编译成执行程序,nginx请求处理的程序编译程动态库。C程序调用c++程序,使用了c++11的__cplusplus宏定义。 ## 程序演示 diff --git a/depend/http_modle/Makefile b/depend/Makefile similarity index 100% rename from depend/http_modle/Makefile rename to depend/Makefile diff --git a/depend/http_modle/config b/depend/config similarity index 100% rename from depend/http_modle/config rename to depend/config diff --git a/depend/http_modle/configure b/depend/configure similarity index 100% rename from depend/http_modle/configure rename to depend/configure diff --git a/depend/http_modle/nginx.c b/depend/nginx.c similarity index 100% rename from depend/http_modle/nginx.c rename to depend/nginx.c diff --git a/depend/http_modle/nginx.h b/depend/nginx.h similarity index 100% rename from depend/http_modle/nginx.h rename to depend/nginx.h diff --git a/depend/http_modle/ngx_http_dream_module.c b/depend/ngx_http_dream_module.c similarity index 100% rename from depend/http_modle/ngx_http_dream_module.c rename to depend/ngx_http_dream_module.c diff --git a/depend/http_modle/pluginsHttp.h b/depend/pluginsHttp.h similarity index 100% rename from depend/http_modle/pluginsHttp.h rename to depend/pluginsHttp.h