首页
下载
文档
问答社区
视频
捐赠
源代码
AI 助理
赞助商
CRMEB
Apipost
腾讯云
微擎
禅道
51Talk
商业产品
Swoole AI 智能文档翻译器
Swoole-Compiler PHP 代码加密器
CRMEB 新零售社交电商系统
登录
注册
全部
提问
分享
讨论
建议
公告
开发框架
CodeGalaxy
发表新帖
enable_static_handler
### 问题描述 enable_static_handler = true ### Swoole版本,PHP版本,以及操作系统版本信息 swoole = 5.1.1 php = 8.0.29 ### 相关代码 ```php <?php $http = new Swoole\Http\Server('0.0.0.0', 29501); $http->set([ 'document_root' => '/www/test/runtime', 'enable_static_handler' => true, ]); $http->on('Request', function ($request, $response) { $response->end('<h1>Hello Swoole. #' . rand(1000, 9999) . '</h1>'); }); $http->start(); ``` ### 描述 我的runtime目录放了一张图片,一个视频,图片能访问,视频不能播放,请问我需要设置什么,视频文件以及权限是没问题的,我用nginx是没问题的。但是swoole为什么不能播放,谢谢 ###配置 ``` Swoole => enabled Author => Swoole Team <team@swoole.com> Version => 5.1.1-dev Built => Oct 20 2023 15:15:21 coroutine => enabled with boost asm context kqueue => enabled rwlock => enabled sockets => enabled openssl => OpenSSL 3.1.3 19 Sep 2023 dtls => enabled http2 => enabled json => enabled curl-native => enabled pcre => enabled zlib => 1.2.11 brotli => E16777225/D16777225 mysqlnd => enabled async_redis => enabled Directive => Local Value => Master Value swoole.enable_coroutine => On => On swoole.enable_library => On => On swoole.enable_fiber_mock => Off => Off swoole.enable_preemptive_scheduler => Off => Off swoole.display_errors => On => On swoole.use_shortname => Off => Off swoole.unixsock_buffer_size => 262144 => 262144 ```
发布于1年前 · 15 次浏览 · 来自
提问
lee
### 问题描述 enable_static_handler = true ### Swoole版本,PHP版本,以及操作系统版本信息 swoole = 5.1.1 php = 8.0.29 ### 相关代码 ```php <?php $http = new Swoole\Http\Server('0.0.0.0', 29501); $http->set([ 'document_root' => '/www/test/runtime', 'enable_static_handler' => true, ]); $http->on('Request', function ($request, $response) { $response->end('<h1>Hello Swoole. #' . rand(1000, 9999) . '</h1>'); }); $http->start(); ``` ### 描述 我的runtime目录放了一张图片,一个视频,图片能访问,视频不能播放,请问我需要设置什么,视频文件以及权限是没问题的,我用nginx是没问题的。但是swoole为什么不能播放,谢谢 ###配置 ``` Swoole => enabled Author => Swoole Team <team@swoole.com> Version => 5.1.1-dev Built => Oct 20 2023 15:15:21 coroutine => enabled with boost asm context kqueue => enabled rwlock => enabled sockets => enabled openssl => OpenSSL 3.1.3 19 Sep 2023 dtls => enabled http2 => enabled json => enabled curl-native => enabled pcre => enabled zlib => 1.2.11 brotli => E16777225/D16777225 mysqlnd => enabled async_redis => enabled Directive => Local Value => Master Value swoole.enable_coroutine => On => On swoole.enable_library => On => On swoole.enable_fiber_mock => Off => Off swoole.enable_preemptive_scheduler => Off => Off swoole.display_errors => On => On swoole.use_shortname => Off => Off swoole.unixsock_buffer_size => 262144 => 262144 ```
赞
0
分享
收藏
提问
分享
讨论
建议
公告
开发框架
CodeGalaxy
评论
2023-10-21
lee
我是编译安装,所有拓展都正常
赞
0
回复
2023-11-02
Rango
可能是视频的 `mime` 格式不支持。建议使用 chrome 调试工具打开链接,查看响应内容是什么。 参考:[https://wiki.swoole.com/#/functions?id=swoole_mime_type_add](https://wiki.swoole.com/#/functions?id=swoole_mime_type_add)
赞
0
回复
微信公众号
热门内容
暂无回复的问答
- CodeGalaxy K3s 轻量集群节点之间如何实现负载均衡
- 关于openssl CURL WARNING swSSL_connect: SSL_connect(fd=69) failed. Error: error:141A318A:SSL routines:tls_process_ske_dhe:dh key too small[1|394]
- 多个模型如何进行事务异常回退?
- websocket开启wss报错
- 协程tcp服务器如何使用多进程?recv()方法接收信息,打印出来的pid一直是同一个。没用使用到多进程啊。