ithewei / libhv

🔥 比libevent/libuv/asio更易用的网络库。A c/c++ network library for developing TCP/UDP/SSL/HTTP/WebSocket/MQTT client/server.

Home Page:https://github.com/ithewei/libhv/wiki

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

能同时支持部署web静态资源吗?

0x1306a94 opened this issue · comments

我想在开发板上面使用libhv提供API 以及web sever。
API 已经跑通了,我改如何配置 网页打包的静态资源呢?

image image image * 是需要把每个子集目录也要添加映射吗? @ithewei

@ithewei 我改成设置 document_root 了,就对了

设置ducument_root和通过Static("/", path) 效果是一样的

if (service->document_root.size() > 0 && service->GetStaticFilepath("/").empty()) {

@ithewei 嗯呢。之前404是被SEAndroid权限拒绝了,补上权限后就对了。