Skip to content

Commit

Permalink
Changed default password to satisfy stricter password validation poli…
Browse files Browse the repository at this point in the history
…cies
  • Loading branch information
jjdejong committed Jun 7, 2024
1 parent 89d6e6e commit ec2beb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=phpip
DB_USERNAME=phpip
DB_PASSWORD=phpip
DB_PASSWORD=phpIP2024!

OPS_APP_KEY="Your Consumer Key"
OPS_SECRET="Your Consumer Secret Key"
Expand Down
2 changes: 1 addition & 1 deletion doc/install-phpip-ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ apt -y install php php-common libapache2-mod-php php-cli php-mysql php-json php-

apt -y install unzip git-core composer

echo "CREATE DATABASE phpip DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; CREATE USER phpip@localhost IDENTIFIED BY 'phpip'; GRANT ALL PRIVILEGES ON phpip.* TO phpip@localhost; SET GLOBAL log_bin_trust_function_creators = 1;" | mysql
echo "CREATE DATABASE phpip DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; CREATE USER phpip@localhost IDENTIFIED BY 'phpIP2024!'; GRANT ALL PRIVILEGES ON phpip.* TO phpip@localhost; SET GLOBAL log_bin_trust_function_creators = 1;" | mysql

echo "127.0.0.1 phpip.local" >> /etc/hosts

Expand Down

0 comments on commit ec2beb6

Please sign in to comment.