5 lines
212 B
Bash
5 lines
212 B
Bash
|
|
#!/bin/sh
|
||
|
|
# Substitute only ANTHROPIC_API_KEY in nginx config, leave nginx variables untouched
|
||
|
|
envsubst '${ANTHROPIC_API_KEY}' < /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf
|
||
|
|
exec nginx -g 'daemon off;'
|