9 lines
150 B
Bash
Executable File
9 lines
150 B
Bash
Executable File
#!/bin/sh
|
|
|
|
CLIENT_ID="${CLIENT_ID:-false}"
|
|
|
|
echo '{
|
|
"CLIENT_ID":"'"$CLIENT_ID"' }' > /usr/share/nginx/html/config.json
|
|
|
|
nginx -g 'daemon off;'
|