是否可以将 nginx 嵌入到 C/C++ 中?应用
该应用程序可以在 Linux、Windows、Macintosh 上运行。
另外,如果是的话,需要付出多少努力?
The application runs in Linux, Windows, Macintosh.
Also, if yes, how much effort is required?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
nginx 可以在 Windows 上运行吗?
我认为使用包含良好 http 服务器的现有库会得到更好的结果。我的第一选择是 libevent。
Does nginx run on windows?
I think you'd have a much better result using an existing library that includes a good http server. My first choice would be libevent.
由于源代码质量低下,Windows 版本的 Ngnix 并未开源;它只是用于测试/开发。
对于 Linux 和 *BSD,您可以使用 模块 API< 将 C/C++ 应用程序嵌入 Nginx 中/a>.但如果你想留在你的应用程序中,libev 和 libeio 是你的朋友。
Windows version of Ngnix isn't open sourced due to low quality of source code; it's just for testing/development.
For Linux and *BSD, you can embed your C/C++ application into Nginx by using module API. But if you want to stay in your application, libev and libeio is your friend.