mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 12:33:26 +00:00

Add more env variable for install, setup and upgrade (WIP) Setting language and default language Trusted proxies setting refacto [SKIP CI]
62 lines
2.7 KiB
Bash
Executable File
62 lines
2.7 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
if [ -z "$PHRASEANET_ADMIN_ACCOUNT_EMAIL" ]; then
|
|
echo "PHRASEANET_ADMIN_ACCOUNT_EMAIL, Phraseanet admin account var is not set."
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "$PHRASEANET_ADMIN_ACCOUNT_PASSWORD " ]; then
|
|
echo "$PHRASEANET_ADMIN_ACCOUNT_PASSWORD, Phaseanet admin password var is not set."
|
|
exit 1
|
|
fi
|
|
|
|
/var/alchemy/Phraseanet/bin/setup system:install \
|
|
--email=$PHRASEANET_ADMIN_ACCOUNT_EMAIL \
|
|
--password=$PHRASEANET_ADMIN_ACCOUNT_PASSWORD \
|
|
--db-host=$PHRASEANET_DB_HOST \
|
|
--db-port=$PHRASEANET_DB_PORT \
|
|
--db-user=$PHRASEANET_DB_USER \
|
|
--db-password=$PHRASEANET_DB_PASSWORD \
|
|
--db-template=$INSTALL_DB_TEMPLATE \
|
|
--appbox=$INSTALL_APPBOX \
|
|
--databox=$INSTALL_DATABOX \
|
|
--server-name=$PHRASEANET_SERVER_NAME \
|
|
--download-path=$PHRASEANET_DOWNLOAD_DIR \
|
|
--lazaret-path=$PHRASEANET_LAZARET_DIR \
|
|
--caption-path=$PHRASEANET_CAPTION_DIR \
|
|
--worker-tmp-files=$PHRASEANET_WORKER_TMP \
|
|
--data-path=/var/alchemy/Phraseanet/datas -y
|
|
|
|
# Bus configuration for scheduler & worker
|
|
bin/setup system:config set workers.queue.worker-queue.registry alchemy_worker.queue_registry
|
|
bin/setup system:config set workers.queue.worker-queue.host rabbitmq
|
|
bin/setup system:config set workers.queue.worker-queue.port 5672
|
|
bin/setup system:config set workers.queue.worker-queue.user $PHRASEANET_RABBITMQ_USER
|
|
bin/setup system:config set workers.queue.worker-queue.password $PHRASEANET_RABBITMQ_PASSWORD
|
|
bin/setup system:config set workers.queue.worker-queue.vhost /
|
|
|
|
/var/alchemy/Phraseanet/bin/setup system:config set main.search-engine.options.host elasticsearch
|
|
/var/alchemy/Phraseanet/bin/setup system:config set main.search-engine.options.minScore 2
|
|
/var/alchemy/Phraseanet/bin/setup system:config set main.search-engine.options.facets._base.limit 10
|
|
/var/alchemy/Phraseanet/bin/setup system:config set main.search-engine.options.facets._collection.limit 10
|
|
/var/alchemy/Phraseanet/bin/setup system:config set main.search-engine.options.facets._doctype.limit 10
|
|
|
|
## Redis
|
|
/var/alchemy/Phraseanet/bin/setup system:config set main.cache.options.host redis
|
|
/var/alchemy/Phraseanet/bin/setup system:config set main.cache.options.port 6379
|
|
/var/alchemy/Phraseanet/bin/setup system:config set main.cache.options.namespace $PHRASEANET_SERVER_NAME
|
|
/var/alchemy/Phraseanet/bin/setup system:config set main.cache.type redis
|
|
|
|
|
|
/var/alchemy/Phraseanet/bin/console compile:configuration
|
|
|
|
# Create elasticsearch index
|
|
/var/alchemy/Phraseanet/bin/console searchengine:index -c
|
|
|
|
# Create _TRASH_ collection on first databox
|
|
/var/alchemy/Phraseanet/bin/console collection:create 1 Public -d 1
|
|
/var/alchemy/Phraseanet/bin/console collection:create 1 Private -d 1
|
|
/var/alchemy/Phraseanet/bin/console collection:create 1 _TRASH_ -d 1
|