replace ultrasecretkey
This commit is contained in:
parent
5e763900ad
commit
443430bc16
1 changed files with 3 additions and 1 deletions
4
start.sh
4
start.sh
|
@ -5,7 +5,9 @@ set -eu
|
|||
if [[ -z "$(ls -A /app/data)" ]]; then
|
||||
echo "=> Detected first run"
|
||||
cp /app/code/searx/settings.yml.orig /app/data/settings.yml
|
||||
sed -i -e 's/bind_address : "127.0.0.1"/bind_address : "0.0.0.0"/g' /app/data/settings.yml
|
||||
sed -e 's/bind_address : "127.0.0.1"/bind_address : "0.0.0.0"/g' \
|
||||
-e "s/ultrasecretkey/`openssl rand -hex 16`/g" \
|
||||
-i /app/data/settings.yml
|
||||
fi
|
||||
|
||||
chown -R www-data.www-data /app/data
|
||||
|
|
Loading…
Reference in a new issue