15 lines
448 B
Plaintext
15 lines
448 B
Plaintext
# Environment variables for the webhook server
|
|
# Copy this to .env and fill in the secret:
|
|
# cp .env.example .env
|
|
|
|
# Gitea webhook secret — generate with: openssl rand -hex 32
|
|
WEBHOOK_SECRET=
|
|
|
|
# Path to the repo containing docker-compose.yml
|
|
REPO_DIR=/home/djoser/webgpu-portfolio
|
|
|
|
# Bind address and port for the webhook listener
|
|
# Must be 127.0.0.1 — the webhook is served through system nginx proxy
|
|
LISTEN_HOST=127.0.0.1
|
|
LISTEN_PORT=9000
|