php-micro-file-server/run.sh

11 lines
133 B
Bash
Raw Normal View History

2024-09-12 22:45:03 +08:00
#!/bin/sh
# 后台启动
php-fpm -D
2024-09-12 23:34:20 +08:00
# 启动nginx
nginx
# 启动nacos心跳服务
2024-09-13 00:01:47 +08:00
php ./start.php start > /dev/null
2024-09-12 23:34:20 +08:00
# hold后台
sh