Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/squid/sandbox-proxy-rules.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Strict domain allowlist for CI sandbox
# Only these domains are reachable through the Squid proxy.
# Based on: https://github.com/zama-ai/security-hub/tree/main/docs/how-tos/sandboxed-claude-code
#
# To add a new domain: append ".example.com" to the acl below.
# Leading dot means "this domain and all subdomains".

acl allowed_domains dstdomain \
.api.anthropic.com \
.platform.claude.com \
.github.com

# Allow only explicitly allowed domains
http_access deny !allowed_domains
http_access allow allowed_domains

# Deny everything else
http_access deny all
Loading