mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-06 20:10:12 +02:00
8 lines
240 B
Bash
8 lines
240 B
Bash
#!/bin/sh
|
|
# Set default values for environment variables if not already set
|
|
export LEGACY_AUTHENTICATION=${LEGACY_AUTHENTICATION:-false}
|
|
export ANALYTICS_DISABLED=${ANALYTICS_DISABLED:-false}
|
|
|
|
# Execute the original nginx command
|
|
exec "$@"
|