我正在尝试使用来自laravel队列的Guzzle库向远程服务器发出传出HTTP请求。我收到这个错误:
cURL error 56: Received HTTP code 403 from proxy after CONNECT (see http://curl.haxx.se/libcurl/c/libcurl-errors.html
如果我通过在我的控制台中运行php artisan queue:work
在本地进行测试,我的代码工作正常。但是当我在我的服务器上进行测试时,我的laravel队列使用supervisor进行管理,我总是得到这个错误。
以下是我的supervisor.conf文件的配置:
[program:laravel-worker]
process_name=%(program_name)s_%(process_num)02d
command=php /var/www/tef/current/artisan queue:work --sleep=3 --tries=3
autostart=true
autorestart=true
user=www-data
numprocs=2
redirect_stderr=true
stdout_logfile=/tmp/worker.log