-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
769 changed files
with
80,377 additions
and
68,549 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/sh | ||
sed -i 's/index.php$1/index.php?$1/' /etc/openresty/conf.d/hookphp.conf | ||
service openresty start | ||
|
||
service php8.1-fpm start | ||
|
||
service redis-server start | ||
|
||
service rabbitmq-server start | ||
rabbitmq-plugins enable rabbitmq_management rabbitmq_shovel rabbitmq_shovel_management && | ||
rabbitmqctl add_user admin 123456 && | ||
rabbitmqctl set_user_tags admin administrator && | ||
rabbitmqctl set_permissions -p / admin '.*' '.*' '.*' && | ||
rabbitmqctl delete_user guest | ||
|
||
mysqld --user=root & | ||
|
||
mongod -f /etc/mongod.conf & | ||
|
||
supervisord -c /etc/supervisord.conf | ||
|
||
composer update | ||
|
||
chmod 777 -R ./log | ||
|
||
zsh |
Oops, something went wrong.