Files
xdechat-web/entrypoint.sh
刘昊昕 ca27603fd2 commit
2025-10-17 22:59:41 +08:00

10 lines
208 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/bin/sh
set -e
# 运行时生成 /usr/share/nginx/html/env.js
cat >/usr/share/nginx/html/env.js <<EOF
window.__ENV__ = { API_URL: "${API_URL}" };
EOF
# 启动 nginx前台
exec nginx -g 'daemon off;'