storage-local.html 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <form onsubmit="return false" data-auto="true" action="{:request()->url()}" method="post" class='layui-form layui-card' autocomplete="off">
  2. <div class="layui-card-body padding-top-20">
  3. <div class="color-text margin-left-40 margin-bottom-20 layui-code text-center layui-bg-gray" style="border-left-width:1px">
  4. <p class="margin-bottom-5 font-w7">文件将存储在本地服务器,默认保存在 public/upload 目录,文件以 HASH 命名。</p>
  5. <p>文件存储的目录需要有读写权限,有足够的存储空间。<span class="color-red">特别注意,本地存储暂不支持图片压缩!</span></p>
  6. </div>
  7. {include file='config/storage-0'}
  8. <div class="layui-form-item">
  9. <label class="layui-form-label label-required">
  10. <span class="color-green font-w7">访问协议</span><br><span class="nowrap color-desc">Protocol</span>
  11. </label>
  12. <div class="layui-input-block">
  13. {if !sysconf('storage.local_http_protocol')}{php}sysconf('storage.local_http_protocol','http');{/php}{/if}
  14. {foreach ['follow'=>'FOLLOW','http'=>'HTTP','https'=>'HTTPS','path'=>'PATH','auto'=>'AUTO'] as $protocol=>$remark}
  15. <label class="think-radio">
  16. {if sysconf('storage.local_http_protocol') eq $protocol}
  17. <input checked type="radio" name="storage.local_http_protocol" value="{$protocol}" lay-ignore> {$remark}
  18. {else}
  19. <input type="radio" name="storage.local_http_protocol" value="{$protocol}" lay-ignore> {$remark}
  20. {/if}
  21. </label>
  22. {/foreach}
  23. <p class="help-block">本地存储访问协议,其中 HTTPS 需要配置证书才能使用( FOLLOW 跟随系统,PATH 文件路径,AUTO 相对协议 )</p>
  24. </div>
  25. </div>
  26. <div class="layui-form-item">
  27. <label class="layui-form-label" for="storage.local_http_domain">
  28. <span class="color-green font-w7">访问域名</span><br><span class="nowrap color-desc">Domain</span>
  29. </label>
  30. <div class="layui-input-block">
  31. <input id="storage.local_http_domain" type="text" name="storage.local_http_domain" value="{:sysconf('storage.local_http_domain')}" placeholder="请输入上传后的访问域名 (非必填项)" class="layui-input">
  32. <p class="help-block">填写上传后的访问域名(不指定时根据当前访问地址自动计算),如:static.thinkadmin.top</p>
  33. </div>
  34. </div>
  35. <div class="hr-line-dashed margin-left-40"></div>
  36. <input type="hidden" name="storage.type" value="local">
  37. <div class="layui-form-item text-center padding-left-40">
  38. <button class="layui-btn" type="submit">保存配置</button>
  39. <button class="layui-btn layui-btn-danger" type='button' data-confirm="确定要取消修改吗?" data-close>取消修改</button>
  40. </div>
  41. </div>
  42. </form>