/
/
/
Ansible role that deployes services on my runner machine
1# LiveKit Meet Environment Configuration
2# Generated by Ansible - DO NOT EDIT MANUALLY
3#
4# These credentials are consumed server-side by Meet's /api/connection-details
5# route to sign participant JWTs. They are never exposed to the browser.
6
7TZ={{ runner_timezone }}
8
9# WebSocket URL the browser connects to for signaling. Must be reachable from
10# the client machine, not from inside the container.
11LIVEKIT_URL={{ livekit_public_ws_url }}
12
13# API credentials used to mint access tokens
14LIVEKIT_API_KEY={{ livekit_api_key }}
15LIVEKIT_API_SECRET={{ livekit_api_secret }}
16
17# Next.js runtime
18PORT={{ livekit_meet_port }}
19HOSTNAME=0.0.0.0
20NODE_ENV=production
21NEXT_TELEMETRY_DISABLED=1
22