enterprise/admin-setup.md +1 −17
162 162
163Codex Admins can deploy admin-enforced `requirements.toml` policies from the Codex [Policies page](https://chatgpt.com/codex/settings/policies).163Codex Admins can deploy admin-enforced `requirements.toml` policies from the Codex [Policies page](https://chatgpt.com/codex/settings/policies).
164 164
165165Use this page when you want to apply different local Codex constraints to different groups without distributing device-level files first. The managed policy uses the same `requirements.toml` format described in [Managed configuration](https://developers.openai.com/codex/enterprise/managed-configuration), so you can define allowed approval policies, sandbox modes, web search behavior, network access requirements, MCP server allowlists, feature pins, and restrictive command rules. To disable Browser Use, the in-app browser, or Computer Use, see [Pin feature flags](https://developers.openai.com/codex/enterprise/managed-configuration#pin-feature-flags).Use this page when you want to apply different local Codex constraints to different groups without distributing device-level files first. The managed policy uses the same `requirements.toml` format described in [Managed configuration](https://developers.openai.com/codex/enterprise/managed-configuration), so you can define allowed approval policies, sandbox modes, web search behavior, MCP server allowlists, feature pins, and restrictive command rules. To disable Browser Use, the in-app browser, or Computer Use, see [Pin feature flags](https://developers.openai.com/codex/enterprise/managed-configuration#pin-feature-flags).
166 166
167<div class="max-w-1xl mx-auto py-1">167<div class="max-w-1xl mx-auto py-1">
168 <img src="https://developers.openai.com/images/codex/enterprise/policies_and_configurations_page.png"168 <img src="https://developers.openai.com/images/codex/enterprise/policies_and_configurations_page.png"
226computer_use = false226computer_use = false
227```227```
228 228
229Example: define administrator-owned network requirements:
230
231```toml
232experimental_network.enabled = true
233experimental_network.dangerously_allow_all_unix_sockets = true
234experimental_network.allow_local_binding = true
235experimental_network.allowed_domains = [
236 "api.openai.com",
237 "*.example.com",
238]
239experimental_network.denied_domains = [
240 "blocked.example.com",
241 "*.exfil.example.com",
242]
243```
244
245Example: add a restrictive command rule when you want admins to block or gate specific commands:229Example: add a restrictive command rule when you want admins to block or gate specific commands:
246 230
247```toml231```toml