Spaces:
Running
Running
File size: 176 Bytes
d202ada |
1 2 3 4 5 6 7 8 9 |
#!/bin/sh
# Replace the placeholder with the actual value
sed -i "s|__BACKEND_URL__|$BACKEND_URL|g" /etc/nginx/conf.d/default.conf
# Start nginx
exec nginx -g 'daemon off;'
|