mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-17 06:52:27 +01:00
fix typo
This commit is contained in:
parent
33678eeab6
commit
5d30b339d1
@ -22,7 +22,6 @@
|
||||
- Unified translations syntax to use ICU MessageFormat
|
||||
- Refactored front-end translations keys with unified paths
|
||||
- Updated and refactored README and documentations
|
||||
- Updated setup script and instructions
|
||||
- Fix a bug: unable to remove the picture from a training
|
||||
- Fix a bug: no alerts on errors during admin creation
|
||||
- Fix a bug: replaces all Time.now by DateTime.current to prevent time zones issues [Taiga#134]
|
||||
|
@ -7,7 +7,7 @@ welcome_message()
|
||||
clear
|
||||
echo "#======================================================================#"
|
||||
echo -e "#\e[31m ____ __ ____ _ _ __ __ _ __ ___ ____ ____ \e[0m#"
|
||||
echo -e "#\e[31m ( __)/ _\ ( _ \ ___ ( \/ ) / _\ ( ( \ / _\ / __)( __)( _ \\ \e[0m#"
|
||||
echo -e "#\e[31m ( __)/ _\ ( _ \ ___ ( \/ ) / _\ ( ( \ / _\ / __)( __)( _ \ \e[0m#"
|
||||
echo -e "#\e[31m ) _)/ \ ) _ ((___)/ \/ \/ \/ // \( (_ \ ) _) ) / \e[0m#"
|
||||
echo -e "#\e[31m (__) \_/\_/(____/ \_)(_/\_/\_/\_)__)\_/\_/ \___/(____)(__\_) \e[0m#"
|
||||
echo "# #"
|
||||
@ -155,7 +155,7 @@ function join_by { local IFS="$1"; shift; echo "$*"; }
|
||||
prepare_letsencrypt()
|
||||
{
|
||||
if [ "$LETSENCRYPT" != "n" ]; then
|
||||
if ! openssl dhparam -in "$FABMANAGER_PATH/config/nginx/ssl/dhparam.pem"; then
|
||||
if ! openssl dhparam -in "$FABMANAGER_PATH/config/nginx/ssl/dhparam.pem" -check; then
|
||||
mkdir -p "$FABMANAGER_PATH/config/nginx/ssl"
|
||||
printf "\n\nNow, we will generate a Diffie-Hellman (DH) 4096 bits encryption key, to encrypt connections. This will take a moment, please wait...\n"
|
||||
openssl dhparam -out "$FABMANAGER_PATH/config/nginx/ssl/dhparam.pem" 4096
|
||||
|
Loading…
x
Reference in New Issue
Block a user