mirror of
https://github.com/VERT-sh/VERT.git
synced 2026-02-03 19:44:51 -06:00
fixes #206. allows disabling temporarily blocking a file from being converted if repeated failures in an hour. especially useful for local deployments over a network where it may be served through HTTP rather than HTTPS, breaking video conversion due to the hashing code requiring a secure context.
26 lines
1.2 KiB
Plaintext
26 lines
1.2 KiB
Plaintext
# The hostname used for analytics tracking (currently only used by Plausible)
|
|
PUB_HOSTNAME=localhost:5173
|
|
|
|
# URL for your Plausible Analytics instance (leave empty to disable analytics)
|
|
PUB_PLAUSIBLE_URL=https://plausible.example.com
|
|
|
|
# Application environment: "production", "development", or "nightly"
|
|
PUB_ENV=development
|
|
|
|
# URL of the vertd daemon for video conversion (default: official VERT instance)
|
|
PUB_VERTD_URL=https://vertd.vert.sh
|
|
|
|
# Set to true to disable all external requests (vertd, Stripe, Plausible, etc.)
|
|
# Useful for privacy-focused deployments or air-gapped environments
|
|
# Note: the ffmpeg worker is still downloaded via a CDN (cdn.jsdelivr.net)
|
|
PUB_DISABLE_ALL_EXTERNAL_REQUESTS=false
|
|
|
|
# Set to true to disable blocking video conversions of an uploaded file when repeated failures
|
|
# occur within an hour. Useful for local deployments where secure context (HTTPS) may not be
|
|
# available - required for calculating file hashes of videos to block temporarily.
|
|
PUB_DISABLE_FAILURE_BLOCKS=false
|
|
|
|
# Stripe donation settings
|
|
# Please keep these values the same, they support VERT's development!
|
|
PUB_DONATION_URL=https://donations.vert.sh
|
|
PUB_STRIPE_KEY=pk_live_51RDVmAGSxPVad6bQwzVNnbc28nlmzA30krLWk1fefCMpUPiSRPkavMMbGqa8A3lUaOCMlsUEVy2CWDYg0ip3aPpL00ZJlsMkf2 |