8 lines
220 B
Bash
8 lines
220 B
Bash
|
|
#!/usr/bin/env sh
|
||
|
|
set -eu
|
||
|
|
|
||
|
|
API_BASE="${API_BASE:-http://diarization-api:8093}"
|
||
|
|
sed "s|__API_BASE__|${API_BASE}|g" /usr/share/nginx/html/index.html.template > /usr/share/nginx/html/index.html
|
||
|
|
|
||
|
|
exec nginx -g 'daemon off;'
|