323 Star 2.5K Fork 830

GVPaipaw / wookteam

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
SERVER.md 3.66 KB
一键复制 编辑 原始数据 按行查看 历史
kuaifan 提交于 2021-09-07 13:22 . php 8.0

安装教程

English Documentation

安装设置(服务器)

Fork the repo if you are outside collaborator https://gitee.com/aipaw/wookteam.

1、克隆项目到您的本地或服务器

# 使用ssh
git clone git@gitee.com:aipaw/wookteam.git
# 或者你也可以使用https
git clone https://gitee.com/aipaw/wookteam.git

# 进入目录
cd wookteam

# 拷贝 .env
cp .env.example .env

2、修改.env

数据库等信息

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=wookteam
DB_USERNAME=root
DB_PASSWORD=123456
......
LARAVELS_LISTEN_IP=127.0.0.1
LARAVELS_LISTEN_PORT=5200

3、设置项目

git checkout master # 如果使用dev分支进行本地开发
git pull origin master # 如果使用dev分支进行本地开发

composer install
php artisan key:generate
php artisan migrate --seed

4、运行 Laravels (WebSocket)

请确认您的环境以及安装Swoole

php bin/laravels start

建议通过Supervisord监管主进程,前提是不能加-d选项并且设置swoole.daemonizefalse

[program:wookteam-test]
directory=/wwwroot/wookteam.com
command=/usr/local/bin/php bin/laravels start -i
numprocs=1
autostart=true
autorestart=true
startretries=3
user=www
redirect_stderr=true
stdout_logfile=/var/log/supervisor/%(program_name)s.log

5、部署到Nginx

map $http_upgrade $connection_upgrade {
    default upgrade;
    ''      close;
}
upstream swoole {
    # Connect IP:Port
    server 127.0.0.1:5200 weight=5 max_fails=3 fail_timeout=30s;
    keepalive 16;
}
server {
    listen 80;
    
    # Don't forget to bind the host
    server_name wookteam.com;
    root /wwwroot/wookteam.com/public;

    autoindex off;
    index index.html index.htm index.php;

    charset utf-8;

    location / {
        try_files $uri @laravels;
    }

    location =/ws {
        proxy_http_version 1.1;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Real-PORT $remote_port;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_set_header Scheme $scheme;
        proxy_set_header Server-Protocol $server_protocol;
        proxy_set_header Server-Name $server_name;
        proxy_set_header Server-Addr $server_addr;
        proxy_set_header Server-Port $server_port;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection $connection_upgrade;
        # "swoole" is the upstream
        proxy_pass http://swoole;
    }

    location @laravels {
        proxy_http_version 1.1;
        proxy_set_header Connection "";
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Real-PORT $remote_port;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_set_header Scheme $scheme;
        proxy_set_header Server-Protocol $server_protocol;
        proxy_set_header Server-Name $server_name;
        proxy_set_header Server-Addr $server_addr;
        proxy_set_header Server-Port $server_port;
        # "swoole" is the upstream
        proxy_pass http://swoole;
    }
}

默认账号

  • admin/123456
  • system/123456

升级更新

注意:在升级之前请备份好你的数据!

  • 进入目录,依次运行以下命令:
git fetch --all
git reset --hard origin/master
git pull

composer update
php artisan migrate
php bin/laravels start # 如果使用Supervisord则重启Supervisord
PHP
1
https://gitee.com/aipaw/wookteam.git
git@gitee.com:aipaw/wookteam.git
aipaw
wookteam
wookteam
master

搜索帮助