本文最后更新于 2024年5月16日。
221021
布置好后直接用https访问,但一直卡在环境检查部分
按下F2才发现有很多错误
其中一个错误很关键
Mixed Content: The page at 'https://cloud.weiyoun.com/' was loaded over HTTPS, but requested an insecure stylesheet 'http://kodcloud/static/style/dist/main.css'. This request has been blocked; the content must be served over HTTPS.
很明显这是在https条件下访问了http的css资源所以被阻止了。
为了顺利安装,我把防火墙的1111端口开放然后用http访问进入正常的界面。
然后修改配置文件`config/config.php
将【大概在95行代码】:
if(!defined('HOST')){ define('HOST',rtrim(get_host(),'/').'/');} 修改为:
if(!defined(‘HOST’)){ define(‘HOST’,’https://你的域名/‘);}
后https可以正常访问了。
![[Pasted image 20221021144104.png]]
整体感觉kodbox这款网盘不错,功能比较丰富,同时速度很快并且资源占用少,搭建问题也少。