搜索

Help

第3.2页,共18页。 显示 173 条结果 (0.021 秒)

  1. 安全检测-http慢速攻击

        keepalive_timeout  60;     server {         #服务端向客户端传输数据的超时时间         send_timeout 60s;         #请求头分配一个缓冲区         client_body_buffer_size 16k;         #指定客户端与服务端建立连接后发送 request body 的超时时间         client_body_timeout 50s;         #客户端向服务端发送一个完整的 request header 的超时时间         client_header_timeout 10s
    FAQ中心六月 13, 2025
  2. 使用OceanBase数据库作为知识库

    、由于连接该数据库时后置升级类导入资源的时候很慢,很久没有commit,会报Transaction is timeout的错误。       需要设置一下 ob_query_timeout 和 ob_trx_timeout 两个数据库变量(用SQL执行)。      使用show variables like '%timeout%'可以查看到超时时间(单位是微秒,默认值分别是 10s 100s)。 SET GLOBAL connect_timeout = 20000000; SET GLOBAL interactive_timeout = 31536000; SET GLOBAL ob_query_timeout
  3. OAuth 2.0 单点登录V2版

    session 入参设置方式说明: request/query:查询参数(Query Parameters),附加在URL的?后面,键值对形式,比如。 request/body:请求体参数(Body Parameters):在请求体中传递,常见于POST、PUT等方法,默认是JSON格式。 默认会在请求头中 … Content-Type用于设置请求体参数格式。 cookie:Cookie参数:通过Cookie头传递,键值对拼接,如 。 sessionsession参数,通过session传递,键值对拼接。 选择参数来源及参数值: 可配置静态值、动态时间戳、或者是应用ID、应用密钥、上个接口的返回值等 "上个
  4. 系统选项-高级设置

    (ALLOW_CALL_GET_PASSWORD_METHOD) 控制是否允许调用UserManagerModule中的getPassword方法;是否允许通过StateModule获取session属性的方式获取密码(通过RMIServlet来调用)。 2023年8月4号之后的版本,只能获取到自己的密码。 是 允许设置的sessionAttribute的key(用英文逗号分隔) (ALLOW_SET_SESSION_ATTRIBUTES) 允许通过调用CommonService: setSessionAttribute接口设置的属性 mobileClientType,PortalRightFrameHeight,ShowPath
  5. nginx实现仅能移动端企微访问到报表

    mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost … X-Forwarded-For $proxy_add_x_forwarded_for; client_max_body_size 100m; client_body_buffer_size 128k; proxy_connect_timeout
    FAQ中心九月 11, 2024
  6. nginx未配置监听协议默认端口时重定向的url丢失端口

    /octet-stream; sendfile on; keepalive_timeout 65; server { listen 8088; server_name localhost 10.10.10.23; #charset koi8-r; resolver … ; client_max_body_size 100m; client_body_buffer_size 128k; proxy_connect_timeout 90; proxy_send_timeout 90; proxy_read_timeout 90
    FAQ中心九月 11, 2024
  7. nginx修改应用名后登录闪退及访问代理后的应用名和部分资源出现404

    ; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost 10.10.12.91 ; #charset koi8-r … ; client_max_body_size 100m; client_body_buffer_size 128k; proxy_connect_timeout 90; proxy_send_timeout 300
    FAQ中心三月 17, 2023
  8. nginx解决跨域问题方案参考

    on; keepalive_timeout 65; server { listen 80; server_name localhost 10.10.101.73; #charset koi8-r; resolver 8.8.8.8; #代理smartbi,为了 … X-Forwarded-For $proxy_add_x_forwarded_for; client_max_body_size 1000m; client_body_buffer_size 128k; proxy_connect_timeout
    FAQ中心九月 20, 2023
  9. weblogic修改cookiepath

    (本文档仅供参考) weblogic上部署smartbi,默认的cookiePath是/。 image2025-5-30_14-9-2.png 在某些场景下,集成smartbi时,可能会出现会话冲突问题。此时可以通过配置cookiepath参数,解决会话冲突问题。 具体配置方法: 修改smartbi.war包的 WEB-INF/weblogic.xml 文件,增加cookie-path参数配置。 <session-descriptor> <cookie-path>/smartbi</cookie-path> </session-descriptor> image2025-5-30_13-49-39.png 必须
    FAQ中心六月 03, 2025
  10. 使用nginx实现smartbimpp高可用

    /proxy_access_js.log json;   sendfile        on;   keepalive_timeout  65;   upstream smartbiupstream_smartbimpp {    server 10.1.59.126:8123;     server 10.1.59.108:8123;     check interval=3000 rise=2 fall=5 timeout=1000 type=http;     check_http_send "HEAD / HTTP/1.0\r\n\r\n";     check_http_expect_alive http_2xx http_3xx