Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.truu.ai/llms.txt

Use this file to discover all available pages before exploring further.

Chromium-based browsers enforce Local Network Access rules (including loopback). TruU web origins must be explicitly allowlisted so flows that reach localhost, the local device, or local network endpoints are not blocked. On macOS this is configured with managed preferences delivered by MDM (for example Jamf), not Group Policy.

Microsoft Edge on macOS Required Configuration

  • Preference domain: com.microsoft.Edge 
  • Policy key: LocalNetworkAccessAllowedForUrls
  • Entry:  [*.]truu.ai

JAMF

  1. Navigate to the Computers tab, then to Configuration ProfilesmacOS → Click New
  2. Use Application & Custom Settings to then upload the plist
  3. Set Domain to com.microsoft.Edge and add the following plist:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>LocalNetworkAccessAllowedForUrls</key>
	<array>
		<string>[*.]truu.ai</string>
	</array>
</dict>
</plist>
Image
  1. Scope to devices/users that run TruU in MSedge.
  2. After deploying, on a test Mac verify “edge://policy” shows LocalNetworkAccessAllowedForUrls, and _edge://settings/privacy/sitePermissions/allPermissions/localNetwork _
Image

Google Chrome on macOS Required Configuration

JAMF

  1. Navigate to the Computers tab, then to Configuration ProfilesmacOS → Click New
  2. Use Application & Custom Settings to then upload the plist
  3. Set Domain to com.google.Chrome and add the following plist:
<?xml version="1.0" encoding="UTF-8"?> 

<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 

<plist version="1.0"> 

<dict> 

<key>LoopbackNetworkAllowedForUrls</key> 

<array> 

<string>[*.]truu.ai</string> 

</array> 

</dict> 

</plist> 
Image
  1. Scope to devices/users that run TruU in Chrome. 
  2. After deploying, on a test Mac open chrome://policy, confirm LoopbackNetworkAllowedForUrls lists [*.]truu.ai, and check chrome://settings/content/loopbackNetwork (aligned with your Windows validation).
Image
Image