mirror of
https://github.com/logos-co/nomos.git
synced 2026-08-27 17:41:09 +00:00
10 lines
289 B
Bash
Executable File
10 lines
289 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Container can't write to the mounted host dir.
|
|
mkdir /usr/share/nginx/html/
|
|
cp -r /usr/share/nginx/html_template/* /usr/share/nginx/html/
|
|
|
|
envsubst '$ENV_TITLE_STRING' < /usr/share/nginx/html/index.html.template > /usr/share/nginx/html/index.html
|
|
|
|
exec nginx -g "daemon off;"
|