Sha256: 621377c2bb801f64afa9eff53bbff8adc4c1736301296030bc269ee750e541f3
Contents?: true
Size: 1.71 KB
Versions: 3
Compression:
Stored size: 1.71 KB
Contents
require 'yaml' config_file_path = "#{Rails.root}/config/web_sandbox_console.yml" config_hash = File.exists?(config_file_path) ? YAML.load_file(config_file_path).with_indifferent_access[:web_sandbox_console] : {} # web_sandbox_console 配置文件 # 以下配置 都是可选的 缺少的情况下用默认值 或者 不生效 WebSandboxConsole.setup do |config| # 配置 引擎挂载位置 # config.mount_engine_route_path = '/web_sandbox_console' # 配置 ip 白名单 # config.ip_whitelist = %w(192.168.23.12 192.145.2.0/24) # 配置 基本认证 在 config/web_sandbox_console.yml中配置 # PS: 1. 即使config/web_sandbox_console.yml文件不存在,也不会有任何使用上的影响,效果相当于没有开启 # 2. 下面这行不用注释掉,只要不配置yml文件就行 config.http_basic_auth = config_hash[:http_basic_auth] # # 配置 黑名单 类方法 # config.class_method_blacklist = {File: %i(delete read write),Dir: %i(new delete mkdir)} # # 配置 黑名单 实例方法 # config.instance_method_blacklist = {Kernel: %i(system exec `),File: %i(chmod chown)} # 文件黑名单列表 (如果是目录 则目录下所有文件都不可用)目录以 / 结尾 # 默认都是项目路径下的 # config.view_file_blacklist = %w(config/secrets.yml vendor/) # 配置 文件权限,是否仅能查看log文件,默认开启 #config.only_view_log_file = false # 通过非对称加密方式 升级权限,授权通过后,可获得执行数据权限(PS: 数据操作不再回滚) # PS:配置同 http_basic_auth config.public_key = config_hash[:public_key] # # 配置 日志路径 默认路径位于项目下 # config.console_log_path = "log/web_sandbox_console.log" end
Version data entries
3 entries across 3 versions & 1 rubygems