Current Policy

Domain Rules
TypeDomains
Allow {% for d in current_policy.base_allow_domains %}{{ d }} {% endfor %} {% for d in current_policy.runtime_allow_domains %} {{ d }}
{% endfor %} {% if not current_policy.base_allow_domains and not current_policy.runtime_allow_domains %}なし{% endif %}
Deny {% for d in current_policy.deny_domains %}{{ d }} {% endfor %}{% if not current_policy.deny_domains %}なし{% endif %}
Path Rules
{% set has_paths = current_policy.base_paths_allow or current_policy.runtime_paths_allow %} {% if has_paths %} {% for domain, patterns in current_policy.base_paths_allow.items() %} {% endfor %} {% for domain, patterns in current_policy.runtime_paths_allow.items() %} {% endfor %}
DomainAllowed Paths
{{ domain }} {% for p in patterns %}{{ p }} {% endfor %} base
{{ domain }} {% for p in patterns %} {{ p }}
{% endfor %}
runtime
{% else %}

パスルールなし

{% endif %} {% if current_policy.paths_deny %} {% for domain, patterns in current_policy.paths_deny.items() %} {% endfor %}
DomainDenied Paths
{{ domain }} {% for p in patterns %}{{ p }} {% endfor %}
{% endif %}

Review Blocked Domains

ブロックされたドメイン。アクションを選んでください。

{% if candidates %} {% for c in candidates %} {% endfor %}
Action Domain Count Blocked URLs Path Allow
{{ c.host }} {{ c.count }} {% if c.paths %}
    {% for url in c.paths %}
  • {{ url }}
  • {% endfor %}
{% endif %}
{% else %}

候補なし

{% endif %}

Dismissed Domains

{% if runtime_dismissed %} {% for domain, info in runtime_dismissed.items() %} {% endfor %}
DomainReasonDateAction
{{ domain }} {{ info.reason }} {{ info.date }}
{% endif %} {% if base_dismissed %}

Base policy (policy.toml、手動編集で管理):

{% for domain, info in base_dismissed.items() %} {% endfor %}
DomainReasonDate
{{ domain }} {{ info.reason }} {{ info.date }}
{% endif %} {% if not runtime_dismissed and not base_dismissed %}

なし

{% endif %}