mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
12 lines
244 B
Bash
Executable File
12 lines
244 B
Bash
Executable File
#!/usr/bin/dumb-init /bin/sh
|
|
|
|
# Integrate environment variables
|
|
sed -i "s|__BACKEND__|${BACKEND_HOST}|" \
|
|
/etc/nginx/nginx.conf
|
|
sed -i "s|__BASEURL__|${BASE_URL:-/}|g" \
|
|
/var/www/index.htm \
|
|
/var/www/manifest.json
|
|
|
|
# Start server
|
|
exec nginx
|