Current Policy
Domain Rules
| Type | Domains | |
| 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 %}
| Domain | Allowed Paths | |
{% for domain, patterns in current_policy.base_paths_allow.items() %}
| {{ domain }} |
{% for p in patterns %}{{ p }} {% endfor %} |
base |
{% endfor %}
{% for domain, patterns in current_policy.runtime_paths_allow.items() %}
| {{ domain }} |
{% for p in patterns %}
{{ p }}
{% endfor %}
|
runtime |
{% endfor %}
{% else %}
パスルールなし
{% endif %}
{% if current_policy.paths_deny %}
| Domain | Denied Paths |
{% for domain, patterns in current_policy.paths_deny.items() %}
| {{ domain }} |
{% for p in patterns %}{{ p }} {% endfor %} |
{% endfor %}
{% endif %}
Review Blocked Domains
ブロックされたドメイン。アクションを選んでください。
{% if candidates %}
| Action |
Domain |
Count |
Blocked URLs |
Path Allow |
{% for c in candidates %}
|
|
{{ c.host }} |
{{ c.count }} |
{% if c.paths %}
{% for url in c.paths %}
- {{ url }}
{% endfor %}
{% endif %}
|
|
{% endfor %}
{% else %}
候補なし
{% endif %}
Dismissed Domains
{% if runtime_dismissed %}
| Domain | Reason | Date | Action |
{% for domain, info in runtime_dismissed.items() %}
| {{ domain }} |
{{ info.reason }} |
{{ info.date }} |
|
{% endfor %}
{% endif %}
{% if base_dismissed %}
Base policy (policy.toml、手動編集で管理):
| Domain | Reason | Date |
{% for domain, info in base_dismissed.items() %}
| {{ domain }} |
{{ info.reason }} |
{{ info.date }} |
{% endfor %}
{% endif %}
{% if not runtime_dismissed and not base_dismissed %}
なし
{% endif %}