mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 11:35:04 +01:00
9 lines
177 B
Bash
9 lines
177 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
# Use config override environment variable if set
|
||
|
if [ -n "${CONFIG_OVERRIDE:-}" ]; then
|
||
|
echo "$CONFIG_OVERRIDE" > /usr/share/nginx/html/config.json
|
||
|
fi
|