[program:laravel.default]
directory=/mnt/www/abroad
command=php artisan queue:work
autostart=true
autorestart=true
注意[program: 字样不能修改
[program:laravel.default]
directory=/mnt/www/abroad
command=php artisan queue:work
autostart=true
autorestart=true
注意[program: 字样不能修改
PHP Driver | MongoDB 4.0 | MongoDB 3.6 | MongoDB 3.4 | MongoDB 3.2 | MongoDB 3.0 | MongoDB 2.6 |
---|---|---|---|---|---|---|
PHPLIB 1.4 + mongodb-1.5 | ✓ | ✓ | ✓ | ✓ | ✓ | |
PHPLIB 1.3 + mongodb-1.4 | ✓ | ✓ | ✓ | ✓ | ✓ | |
PHPLIB 1.2 + mongodb-1.3 | ✓ | ✓ | ✓ | ✓ | ||
PHPLIB 1.1 + mongodb-1.2 | ✓ | ✓ | ✓ | ✓ | ||
PHPLIB 1.0 + mongodb-1.1 | ✓ | ✓ | ✓ | |||
mongodb-1.0 | ✓ | ✓ |
Error: Cannot find module 'less'
[WARNING] 找不到编译器:wepy-compiler-sass。
解决办法
npm install less --save-dev
npm install wepy-compiler-less --save-dev
npm install
npm rebuild node-sass
# 创建中间件
php artisan make:middleware EnableCrossRequestMiddleware
<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Http\Request;
class EnableCrossRequestMiddleware
{
/**
* Handle an incoming request.
*
* @param Request $request
* @param Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$origin = $request->header('Origin');
if ($origin) {
$exps = [
'/.*\.xxx\.com$/', # 匹配下自己的域名
'/.*localhost.*/',
'/.*127.0.0.1.*/',
'/.*10.*/',
];
foreach ($exps as $exp) {
$matchCount = preg_match($exp, $origin, $matches);
if ($matchCount && isset($matches[0])) {
if ($request->isMethod('OPTIONS')) {
$response = response('');
$response->withHeaders([
'Access-Control-Allow-Credentials' => 'true',
'Access-Control-Allow-Origin' => $origin,
'Access-Control-Allow-Methods' => 'GET, POST',
'Access-Control-Allow-Headers' => 'Content-Type, Token',
'Access-Control-Max-Age' => 3600 * 24,
]);
return $response;
}
$response = $next($request);
$response->withHeaders([
'Access-Control-Allow-Credentials' => 'true',
'Access-Control-Allow-Origin' => $origin,
]);
return $response;
}
}
}
return $next($request);
}
}
另外需要关闭csrf保护否则会413
cmd: set http_proxy=127.0.0.1:1080 powershell: $env:http_proxy="127.0.0.1:1080" $env:https_proxy="127.0.0.1:1080"
http_proxy 用于http链接
https_proxy 用于https链接
# 启动个nginx
docker run --detach --publish 80:80 --name webserver nginx
# 停止nginx
docker container stop webserver
# 删除容器
docker container rm webserver
–detach等于-d 后后台运行的意思
可参考链接:
http://www.runoob.com/docker/docker-command-manual.html
CentOS 7安装docker:
yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
yum install docker-ce docker-ce-cli containerd.io
切换到VMware workstation
bcdedit /set hypervisorlaunchtype off
# 需要重启
切换到docker
bcdedit /set hypervisorlaunchtype auto
# 需要重启
— 创建用户并设置密码(默认密码有复杂度要求,这里使用新的验证方式 caching_sha2_password )
CREATE USER 'root'@'%' IDENTIFIED WITH caching_sha2_password BY 'Aa#111111111';
— 授予root权限
GRANT ALL ON *.* TO 'root'@'%';
UPDATE `mysql`.`user` SET `Grant_priv` = 'y' WHERE (`Host` = '%') and (`User` = 'root');
然后重启下MySQL就好了
如果root@%已经存在了则需要修改密码:
alter user 'root'@'%' identified by '123456';
其他配置:
不强制要求特殊字符:set global validate_password.special_char_count=0;