diff --git a/backend/config/main.php b/backend/config/main.php index 5f89ca7..c6a22cf 100755 --- a/backend/config/main.php +++ b/backend/config/main.php @@ -65,15 +65,41 @@ return [ 'questionnaire' => [ 'class' => 'backend\modules\questionnaire\Questionnaire', ], + 'api' => [ + 'components' => [ + 'user' => [ + 'identityClass' => 'backend\modules\api\models\User', + 'enableAutoLogin' => true, + 'enableSession' => false, + 'class' => 'backend\modules\api\models\User', + //'identityCookie' => ['name' => '_identity-api', 'httpOnly' => true], + ], + ], + 'class' => 'backend\modules\api\Api', + ], ], 'components' => [ 'request' => [ 'csrfParam' => '_csrf-backend', 'baseUrl' => '', // /secure + 'parsers' => [ + 'application/json' => 'yii\web\JsonParser', + 'text/xml' => 'yii/web/XmlParser', + ], + ], + 'response' => [ + 'formatters' => [ + 'json' => [ + 'class' => 'yii\web\JsonResponseFormatter', + 'prettyPrint' => YII_DEBUG, + 'encodeOptions' => JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE, + ], + ], ], 'user' => [ 'identityClass' => 'common\models\User', 'enableAutoLogin' => true, +// 'enableSession' => false, 'identityCookie' => ['name' => '_identity-backend', 'httpOnly' => true], ], 'authManager' => [ @@ -100,6 +126,12 @@ return [ 'showScriptName' => false, 'rules' => [ '' => '/card/user-card', +// 'api/user-questionnaire/' => 'api/profile/user-questionnaire', + [ + 'class' => 'yii\rest\UrlRule', + 'controller' => 'user-questionnaire', + 'except' => ['delete', 'update'], + ], ], ], diff --git a/common/models/Answer.php b/common/models/Answer.php index 44faf43..96b4f90 100644 --- a/common/models/Answer.php +++ b/common/models/Answer.php @@ -125,4 +125,12 @@ class Answer extends \yii\db\ActiveRecord ->andWhere('status=1') ->count(); } + + public static function getActiveAnswers($question_id) + { + return self::find()->where(['question_id' => $question_id]) + ->andWhere(['status' => '1']) + ->AsArray() + ->all(); + } } diff --git a/common/models/Question.php b/common/models/Question.php index 16f856f..59e20b4 100644 --- a/common/models/Question.php +++ b/common/models/Question.php @@ -152,4 +152,12 @@ class Question extends \yii\db\ActiveRecord return date("i:s", mktime(null, null, $this->time_limit)); } + + public static function getActiveQuestions($questionnaire_id) + { + return self::find()->where(['questionnaire_id' => $questionnaire_id]) + ->andWhere(['status' => '1']) + ->AsArray() + ->all(); + } } diff --git a/common/models/Questionnaire.php b/common/models/Questionnaire.php index fb5f243..e8c1464 100644 --- a/common/models/Questionnaire.php +++ b/common/models/Questionnaire.php @@ -2,6 +2,7 @@ namespace common\models; +use phpDocumentor\Reflection\Types\This; use Yii; use yii\behaviors\TimestampBehavior; use yii\db\Expression; @@ -86,6 +87,15 @@ class Questionnaire extends \yii\db\ActiveRecord return $this->hasMany(Question::className(), ['questionnaire_id' => 'id']); } + /** + * @return \yii\db\ActiveQuery + */ + public function getAnswers() + { + return $this->hasMany(Answer::className(), ['question_id' => 'id']) + ->viaTable('question', ['questionnaire_id' => 'id']); + } + /** * @return \yii\db\ActiveQuery */ diff --git a/common/models/UserQuestionnaire.php b/common/models/UserQuestionnaire.php index 59aef83..53c3c99 100644 --- a/common/models/UserQuestionnaire.php +++ b/common/models/UserQuestionnaire.php @@ -277,4 +277,11 @@ class UserQuestionnaire extends \yii\db\ActiveRecord $response->rateResponse(); } } + + public static function findActiveUserQuestionnaires($user_id) + { + return self::find()->where(['user_id' => $user_id]) + ->andWhere(['status' => '1']) + ->all(); + } } diff --git a/composer.json b/composer.json index 27249a3..0fa2ec5 100755 --- a/composer.json +++ b/composer.json @@ -36,7 +36,8 @@ "kavalar/yii2-telegram-bot": "^0.1.0", "ramsey/uuid": "^4.2", "kartik-v/yii2-widget-depdrop": "dev-master", - "2amigos/yii2-transliterator-helper": "*" + "2amigos/yii2-transliterator-helper": "*", + "ext-json": "*" }, "require-dev": { "yiisoft/yii2-debug": "~2.0.0", diff --git a/frontend-access.log b/frontend-access.log index 3e0b969..c0eeed9 100644 --- a/frontend-access.log +++ b/frontend-access.log @@ -17286,3 +17286,1191 @@ 127.0.0.1 - - [25/Oct/2021:13:01:01 +0300] "GET /questionnaire/user-response/view?id=6 HTTP/1.1" 200 11955 "http://backend.guild.loc/questionnaire/user-response" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.63" 127.0.0.1 - - [25/Oct/2021:13:01:01 +0300] "GET /debug/default/toolbar?tag=6176805d0eb3c HTTP/1.1" 200 3420 "http://backend.guild.loc/questionnaire/user-response/view?id=6" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.63" 127.0.0.1 - - [25/Oct/2021:13:01:01 +0300] "GET /questionnaire/user-response/view?id=6 HTTP/1.1" 200 11956 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.63" +127.0.0.1 - - [25/Oct/2021:13:41:58 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 13107 "http://backend.guild.loc/questionnaire/question/view?id=3" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:41:58 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:41:58 +0300] "GET /js/site.js HTTP/1.1" 200 1214 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:41:58 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 200 9507 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:41:58 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:41:58 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:41:58 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:41:58 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:41:58 +0300] "GET /debug/default/toolbar?tag=617689f697aaa HTTP/1.1" 200 3423 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:42:16 +0300] "GET /api HTTP/1.1" 200 7856 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:42:16 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://guild.loc/api" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:42:16 +0300] "GET /css/site.css HTTP/1.1" 200 2011 "http://guild.loc/api" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:42:16 +0300] "GET /js/site.js HTTP/1.1" 200 596 "http://guild.loc/api" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:42:16 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://guild.loc/api" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:42:16 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://guild.loc/api" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:42:16 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://guild.loc/api" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:42:16 +0300] "GET /debug/default/toolbar?tag=61768a08b42ee HTTP/1.1" 200 3400 "http://guild.loc/api" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:42:16 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/api" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:42:24 +0300] "GET /api/default/index HTTP/1.1" 200 7856 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:42:25 +0300] "GET /debug/default/toolbar?tag=61768a10f15c6 HTTP/1.1" 200 3404 "http://guild.loc/api/default/index" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:42:28 +0300] "GET /api/default HTTP/1.1" 200 7855 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:42:28 +0300] "GET /debug/default/toolbar?tag=61768a1461934 HTTP/1.1" 200 3403 "http://guild.loc/api/default" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:49:03 +0300] "GET /api HTTP/1.1" 404 11874 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:49:03 +0300] "GET /debug/default/toolbar?tag=61768b9fbe274 HTTP/1.1" 200 3439 "http://backend.guild.loc/api" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:49:03 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/api" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:49:12 +0300] "GET /api HTTP/1.1" 200 7860 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:49:12 +0300] "GET /debug/default/toolbar?tag=61768ba89de79 HTTP/1.1" 200 3403 "http://guild.loc/api" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:49:40 +0300] "GET /api HTTP/1.1" 200 7858 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:49:40 +0300] "GET /debug/default/toolbar?tag=61768bc403a1f HTTP/1.1" 200 3404 "http://guild.loc/api" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:49:53 +0300] "GET /api/skills HTTP/1.1" 401 161 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:52:38 +0300] "GET / HTTP/1.1" 200 12903 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:52:38 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106548 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:52:38 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:13:52:38 +0300] "GET /debug/default/toolbar?tag=61768c765b968 HTTP/1.1" 200 3412 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:12 +0300] "GET /api/skills HTTP/1.1" 401 161 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:26 +0300] "GET /api/skills HTTP/1.1" 401 161 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:32 +0300] "GET / HTTP/1.1" 200 12901 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:32 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:32 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:32 +0300] "GET /assets/39b83f70/js/select2.full.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:32 +0300] "GET /assets/39b83f70/js/i18n/ru.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:32 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:32 +0300] "GET /assets/5b57ee2f/js/select2-krajee.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:32 +0300] "GET /assets/bae3a4f/js/kv-widgets.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:32 +0300] "GET /js/site.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:32 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:32 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:32 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:32 +0300] "GET /debug/default/toolbar?tag=61768ec8747dc HTTP/1.1" 200 3411 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:32 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:57 +0300] "GET / HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:57 +0300] "GET /site/login HTTP/1.1" 200 7789 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:57 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:57 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:57 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:57 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 304 0 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:57 +0300] "GET /assets/27128343/yii.activeForm.js HTTP/1.1" 304 0 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:57 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 304 0 "http://backend.guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:02:57 +0300] "GET /debug/default/toolbar?tag=61768ee11c760 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:09 +0300] "GET /site/login HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET / HTTP/1.1" 200 12901 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/39b83f70/css/select2.css HTTP/1.1" 200 17358 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/5b57ee2f/css/select2-addl.css HTTP/1.1" 200 994 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/5b57ee2f/css/select2-krajee.css HTTP/1.1" 200 20817 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/bae3a4f/css/kv-widgets.css HTTP/1.1" 200 813 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106548 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/5b57ee2f/js/select2-krajee.js HTTP/1.1" 200 7344 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/bae3a4f/js/kv-widgets.js HTTP/1.1" 200 1061 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 200 288580 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/39b83f70/js/select2.full.js HTTP/1.1" 200 173566 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/39b83f70/js/i18n/ru.js HTTP/1.1" 200 1171 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 200 9507 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /js/site.js HTTP/1.1" 200 1214 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /debug/default/toolbar?tag=61768eee032da HTTP/1.1" 200 3411 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /assets/bae3a4f/img/loading-plugin.gif HTTP/1.1" 200 847 "http://backend.guild.loc/assets/bae3a4f/css/kv-widgets.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:03:10 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:09:55 +0300] "GET / HTTP/1.1" 200 7759 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:09:55 +0300] "GET /debug/default/toolbar?tag=61769082f0d75 HTTP/1.1" 200 3411 "http://guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:09:58 +0300] "GET /site/index HTTP/1.1" 200 7755 "http://guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:09:58 +0300] "GET /debug/default/toolbar?tag=617690868e807 HTTP/1.1" 200 3411 "http://guild.loc/site/index" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:00 +0300] "GET /access/access/index HTTP/1.1" 200 8151 "http://guild.loc/site/index" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:00 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 200 9507 "http://guild.loc/access/access/index" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:00 +0300] "GET /debug/default/toolbar?tag=617690880c80c HTTP/1.1" 200 3403 "http://guild.loc/access/access/index" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:04 +0300] "GET /access/access/create HTTP/1.1" 200 8607 "http://guild.loc/access/access/index" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:04 +0300] "GET /assets/27128343/yii.validation.js HTTP/1.1" 304 0 "http://guild.loc/access/access/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:04 +0300] "GET /assets/27128343/yii.activeForm.js HTTP/1.1" 304 0 "http://guild.loc/access/access/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:04 +0300] "GET /debug/default/toolbar?tag=6176908c7a666 HTTP/1.1" 200 3404 "http://guild.loc/access/access/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:04 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/access/access/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:23 +0300] "POST /access/access/create HTTP/1.1" 500 71760 "http://guild.loc/access/access/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:29 +0300] "GET /access/access/create HTTP/1.1" 200 8607 "http://guild.loc/access/access/index" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:29 +0300] "GET /debug/default/toolbar?tag=617690a531ed5 HTTP/1.1" 200 3403 "http://guild.loc/access/access/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:29 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/access/access/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:35 +0300] "GET /access/access/index HTTP/1.1" 200 8147 "http://guild.loc/access/access/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:35 +0300] "GET /debug/default/toolbar?tag=617690ab734f0 HTTP/1.1" 200 3404 "http://guild.loc/access/access/index" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:36 +0300] "GET /reports/reports/index HTTP/1.1" 200 8307 "http://guild.loc/access/access/index" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:36 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:10:36 +0300] "GET /debug/default/toolbar?tag=617690ac88e21 HTTP/1.1" 200 3406 "http://guild.loc/reports/reports/index" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:11:06 +0300] "POST /site/logout HTTP/1.1" 302 5 "http://guild.loc/reports/reports/index" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:11:06 +0300] "GET / HTTP/1.1" 302 5 "http://guild.loc/reports/reports/index" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:11:06 +0300] "GET /site/login HTTP/1.1" 200 8460 "http://guild.loc/reports/reports/index" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:11:07 +0300] "GET /debug/default/toolbar?tag=617690cae2f2f HTTP/1.1" 200 3319 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:11:09 +0300] "GET /site/signup HTTP/1.1" 200 8581 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:11:09 +0300] "GET /debug/default/toolbar?tag=617690ccf2204 HTTP/1.1" 200 3324 "http://guild.loc/site/signup" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:11:09 +0300] "GET /site/login HTTP/1.1" 200 8460 "http://guild.loc/site/signup" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:11:09 +0300] "GET /debug/default/toolbar?tag=617690cdcc0ef HTTP/1.1" 200 3319 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:11:12 +0300] "POST /site/login HTTP/1.1" 200 8500 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:11:12 +0300] "GET /debug/default/toolbar?tag=617690d017cf7 HTTP/1.1" 200 3374 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:11:15 +0300] "POST /site/login HTTP/1.1" 200 8500 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:11:15 +0300] "GET /debug/default/toolbar?tag=617690d39bf25 HTTP/1.1" 200 3375 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:11:24 +0300] "POST /site/login HTTP/1.1" 302 5 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:11:24 +0300] "GET / HTTP/1.1" 200 7757 "http://guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:11:25 +0300] "GET /debug/default/toolbar?tag=617690dce43ec HTTP/1.1" 200 3411 "http://guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:11:25 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:12:18 +0300] "GET /api/ HTTP/1.1" 200 7858 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:12:18 +0300] "GET /debug/default/toolbar?tag=6176911200214 HTTP/1.1" 200 3402 "http://guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:12:38 +0300] "GET /api/ HTTP/1.1" 200 7863 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:12:38 +0300] "GET /debug/default/toolbar?tag=6176912669f39 HTTP/1.1" 200 3404 "http://guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:12:38 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:12:43 +0300] "GET /api/skills/ HTTP/1.1" 401 161 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:13:12 +0300] "GET /api/skills/ HTTP/1.1" 500 93894 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:13:12 +0300] "GET /debug/default/toolbar?tag=6176914889912 HTTP/1.1" 200 3421 "http://guild.loc/api/skills/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:13:12 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/api/skills/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:13:20 +0300] "GET /api/skills/ HTTP/1.1" 200 24 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:15:23 +0300] "GET /api/skills/ HTTP/1.1" 401 161 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:16:39 +0300] "GET /api/skills-on-main-page/ HTTP/1.1" 404 7826 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:16:39 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://guild.loc/api/skills-on-main-page/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:16:39 +0300] "GET /debug/default/toolbar?tag=61769217c7183 HTTP/1.1" 200 3436 "http://guild.loc/api/skills-on-main-page/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:17:39 +0300] "GET /api/skills/ HTTP/1.1" 401 161 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:21:51 +0300] "GET /gii/module HTTP/1.1" 200 8947 "http://backend.guild.loc/gii/crud" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:21:51 +0300] "GET /debug/default/toolbar?tag=6176934f278d5 HTTP/1.1" 200 3393 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:21:51 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:22:21 +0300] "GET /card/ HTTP/1.1" 404 7825 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:22:21 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 61440 "http://guild.loc/card/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:22:21 +0300] "GET /debug/default/toolbar?tag=6176936d41581 HTTP/1.1" 200 3438 "http://guild.loc/card/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:23:08 +0300] "GET /api/skills/ HTTP/1.1" 200 24 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:23:10 +0300] "GET /card/ HTTP/1.1" 404 7824 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:23:10 +0300] "GET /debug/default/toolbar?tag=6176939ed2673 HTTP/1.1" 200 3440 "http://guild.loc/card/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:23:33 +0300] "GET /card/user-card/ HTTP/1.1" 200 7757 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:23:33 +0300] "GET /debug/default/toolbar?tag=617693b5bda7b HTTP/1.1" 200 3411 "http://guild.loc/card/user-card/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:24:50 +0300] "GET /skills/index/ HTTP/1.1" 404 7827 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:24:50 +0300] "GET /debug/default/toolbar?tag=61769401f3375 HTTP/1.1" 200 3435 "http://guild.loc/skills/index/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:25:01 +0300] "GET /card/skills/index/ HTTP/1.1" 404 7823 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:25:02 +0300] "GET /debug/default/toolbar?tag=6176940deb4e4 HTTP/1.1" 200 3440 "http://guild.loc/card/skills/index/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:25:09 +0300] "GET /card/skills/ HTTP/1.1" 404 7825 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:25:09 +0300] "GET /debug/default/toolbar?tag=6176941503257 HTTP/1.1" 200 3438 "http://guild.loc/card/skills/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:25:21 +0300] "GET /api/skills/index/ HTTP/1.1" 200 24 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:56:29 +0300] "GET /gii/model HTTP/1.1" 200 11844 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:56:29 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:56:29 +0300] "GET /debug/default/toolbar?tag=61769b6d3b1b8 HTTP/1.1" 200 3391 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:56:29 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:56:32 +0300] "GET /gii/module HTTP/1.1" 200 8950 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:56:32 +0300] "GET /debug/default/toolbar?tag=61769b704fe7e HTTP/1.1" 200 3392 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:57:47 +0300] "POST /gii/module HTTP/1.1" 200 10236 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:57:47 +0300] "GET /debug/default/toolbar?tag=61769bbaf3ca7 HTTP/1.1" 200 3390 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:58:12 +0300] "POST /gii/module HTTP/1.1" 200 10119 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:58:12 +0300] "GET /debug/default/toolbar?tag=61769bd48abe1 HTTP/1.1" 200 3391 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:58:31 +0300] "POST /gii/module HTTP/1.1" 200 10130 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:58:31 +0300] "GET /debug/default/toolbar?tag=61769be701ba6 HTTP/1.1" 200 3390 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:58:31 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:58:35 +0300] "POST /gii/module HTTP/1.1" 200 9299 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:58:36 +0300] "GET /debug/default/toolbar?tag=61769bebdf400 HTTP/1.1" 200 3391 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:58:36 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:59:50 +0300] "GET /gii/ HTTP/1.1" 200 8217 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:59:50 +0300] "GET /debug/default/toolbar?tag=61769c36632ba HTTP/1.1" 200 3390 "http://backend.guild.loc/gii/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:59:52 +0300] "GET /gii/module HTTP/1.1" 200 8946 "http://backend.guild.loc/gii/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:14:59:52 +0300] "GET /debug/default/toolbar?tag=61769c387f8ce HTTP/1.1" 200 3391 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:00:09 +0300] "POST /gii/module HTTP/1.1" 200 10059 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:00:09 +0300] "GET /debug/default/toolbar?tag=61769c49bb583 HTTP/1.1" 200 3391 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:03:00 +0300] "POST /gii/module HTTP/1.1" 200 10131 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:03:01 +0300] "GET /debug/default/toolbar?tag=61769cf4e55e3 HTTP/1.1" 200 3391 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:03:44 +0300] "POST /gii/module HTTP/1.1" 200 10139 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:03:44 +0300] "GET /debug/default/toolbar?tag=61769d2068fa4 HTTP/1.1" 200 3393 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:03:50 +0300] "POST /gii/module HTTP/1.1" 200 10142 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:03:50 +0300] "GET /debug/default/toolbar?tag=61769d26ce7b8 HTTP/1.1" 200 3390 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:03:58 +0300] "POST /gii/module HTTP/1.1" 200 9303 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:03:58 +0300] "GET /debug/default/toolbar?tag=61769d2e6f25a HTTP/1.1" 200 3390 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:05:01 +0300] "GET /questionnaire/ HTTP/1.1" 200 11649 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:05:01 +0300] "GET /js/site.js HTTP/1.1" 200 1214 "http://backend.guild.loc/questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:05:01 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:05:01 +0300] "GET /debug/default/toolbar?tag=61769d6d20c0c HTTP/1.1" 200 3406 "http://backend.guild.loc/questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:05:06 +0300] "GET /questionnaire/api/ HTTP/1.1" 404 11876 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:05:06 +0300] "GET /debug/default/toolbar?tag=61769d7296109 HTTP/1.1" 200 3441 "http://backend.guild.loc/questionnaire/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:05:18 +0300] "GET /api/ HTTP/1.1" 200 11644 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:05:18 +0300] "GET /debug/default/toolbar?tag=61769d7e97a42 HTTP/1.1" 200 3398 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:29:42 +0300] "GET /gii/model HTTP/1.1" 200 11841 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:29:42 +0300] "GET /debug/default/toolbar?tag=6176a33666ff2 HTTP/1.1" 200 3387 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:29:42 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:31:46 +0300] "POST /gii/model HTTP/1.1" 200 12928 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:31:46 +0300] "GET /debug/default/toolbar?tag=6176a3b25b539 HTTP/1.1" 200 3397 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:31:53 +0300] "POST /gii/model HTTP/1.1" 200 12012 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:31:53 +0300] "GET /debug/default/toolbar?tag=6176a3b8bc68d HTTP/1.1" 200 3396 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:33:45 +0300] "GET /gii/controller HTTP/1.1" 200 9639 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:33:45 +0300] "GET /debug/default/toolbar?tag=6176a42918259 HTTP/1.1" 200 3392 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:34:28 +0300] "POST /gii/controller HTTP/1.1" 200 10798 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:34:28 +0300] "GET /debug/default/toolbar?tag=6176a45418869 HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:34:32 +0300] "POST /gii/controller HTTP/1.1" 200 9816 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:34:32 +0300] "GET /debug/default/toolbar?tag=6176a458c9395 HTTP/1.1" 200 3396 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:39:19 +0300] "GET /api/skills/index/ HTTP/1.1" 401 161 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:15:40:20 +0300] "GET /api/skills/skills-on-main-page HTTP/1.1" 401 161 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:15:40:28 +0300] "GET /api/skills/skills-on-main-page HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:15:40:51 +0300] "GET /api/skills/skills-on-main-page HTTP/1.1" 200 17 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:15:41:41 +0300] "GET /api/skills/reports HTTP/1.1" 404 7701 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:15:42:21 +0300] "GET /api/reports HTTP/1.1" 401 161 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:15:42:39 +0300] "GET /api/reports HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:15:50:02 +0300] "GET /gii/extension HTTP/1.1" 200 10302 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:50:02 +0300] "GET /debug/default/toolbar?tag=6176a7fa41e71 HTTP/1.1" 200 3392 "http://backend.guild.loc/gii/extension" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:50:02 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/gii/extension" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:50:08 +0300] "GET /gii/module HTTP/1.1" 200 8950 "http://backend.guild.loc/gii/extension" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:50:09 +0300] "GET /debug/default/toolbar?tag=6176a800d32d4 HTTP/1.1" 200 3392 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:50:09 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:50:10 +0300] "GET /gii HTTP/1.1" 200 8216 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:15:50:10 +0300] "GET /debug/default/toolbar?tag=6176a8024c044 HTTP/1.1" 200 3388 "http://backend.guild.loc/gii" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:02:33 +0300] "GET /api/ HTTP/1.1" 200 11644 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:02:34 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:02:34 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:02:34 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:02:34 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106548 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:02:34 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:02:34 +0300] "GET /debug/default/toolbar?tag=6176aae9d893f HTTP/1.1" 200 3399 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:02:34 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:02:44 +0300] "GET /api/ HTTP/1.1" 200 11644 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:02:44 +0300] "GET /debug/default/toolbar?tag=6176aaf46982d HTTP/1.1" 200 3399 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:02:48 +0300] "GET /api/index/ HTTP/1.1" 404 11871 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:02:48 +0300] "GET /debug/default/toolbar?tag=6176aaf89ce0a HTTP/1.1" 200 3441 "http://backend.guild.loc/api/index/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:02:48 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/api/index/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:03:05 +0300] "GET /api/user-questionnaire/ HTTP/1.1" 200 123 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:03:05 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/api/user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:03:45 +0300] "GET /api/user-questionnaire/json/ HTTP/1.1" 404 11877 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:03:46 +0300] "GET /debug/default/toolbar?tag=6176ab31cf0c3 HTTP/1.1" 200 3437 "http://backend.guild.loc/api/user-questionnaire/json/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:03:46 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/api/user-questionnaire/json/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:03:54 +0300] "GET /api/user-questionnaire/ HTTP/1.1" 200 123 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:03:54 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/api/user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:04:01 +0300] "GET /api/user-questionnaire/json/ HTTP/1.1" 404 11874 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:04:01 +0300] "GET /debug/default/toolbar?tag=6176ab41bd0b5 HTTP/1.1" 200 3440 "http://backend.guild.loc/api/user-questionnaire/json/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:13:12 +0300] "GET /user-questionnaire HTTP/1.1" 404 11866 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:13:44 +0300] "GET /api/skills/skills-onMainPage HTTP/1.1" 404 7703 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:13:56 +0300] "GET /api/skills/ HTTP/1.1" 401 161 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:14:04 +0300] "GET /skills/ HTTP/1.1" 404 7704 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:17:35 +0300] "GET /api/user-questionnaire HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:17:35 +0300] "GET /site/login HTTP/1.1" 200 7790 "http://backend.guild.loc/api/user-questionnaire" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:18:31 +0300] "GET /api/user-questionnaire HTTP/1.1" 200 123 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:18:31 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/api/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:18:42 +0300] "GET /api/user-questionnaire/json HTTP/1.1" 404 11878 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:18:42 +0300] "GET /debug/default/toolbar?tag=6176aeb2c14cc HTTP/1.1" 200 3440 "http://backend.guild.loc/api/user-questionnaire/json" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:18:42 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/api/user-questionnaire/json" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:18:46 +0300] "GET /api/user-questionnaire HTTP/1.1" 200 123 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:18:56 +0300] "GET /api/user-questionnaire HTTP/1.1" 200 123 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:19:04 +0300] "GET /api/user-questionnaire?json HTTP/1.1" 200 123 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:28:42 +0300] "GET /api/user-questionnaire HTTP/1.1" 200 123 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [25/Oct/2021:16:28:49 +0300] "GET /api/user-questionnaire HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:28:49 +0300] "GET /site/login HTTP/1.1" 200 7789 "http://backend.guild.loc/api/user-questionnaire" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:29:36 +0300] "GET /api/user-questionnaire HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:29:36 +0300] "GET /site/login HTTP/1.1" 200 7791 "http://backend.guild.loc/api/user-questionnaire" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:29:38 +0300] "GET /api/user-questionnaire HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:29:38 +0300] "GET /site/login HTTP/1.1" 200 7790 "http://backend.guild.loc/api/user-questionnaire" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:29:43 +0300] "GET /api/user-questionnaire HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:29:43 +0300] "GET /site/login HTTP/1.1" 200 7790 "http://backend.guild.loc/api/user-questionnaire" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:29:53 +0300] "GET /api/user-questionnaire HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:29:53 +0300] "GET /site/login HTTP/1.1" 200 7787 "http://backend.guild.loc/api/user-questionnaire" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:30:35 +0300] "GET /api/user-questionnaire HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:30:35 +0300] "GET /site/login HTTP/1.1" 200 7789 "http://backend.guild.loc/api/user-questionnaire" "PostmanRuntime/7.28.4" +127.0.0.1 - - [25/Oct/2021:16:30:47 +0300] "GET /api/user-questionnaire HTTP/1.1" 404 7703 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:10:22:32 +0300] "GET /api/skills/index/ HTTP/1.1" 401 161 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:22:34 +0300] "GET /api/user-questionnaire HTTP/1.1" 500 98699 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:22:34 +0300] "GET /debug/default/toolbar?tag=6177acbab1776 HTTP/1.1" 302 5 "http://backend.guild.loc/api/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:22:34 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/api/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:22:39 +0300] "GET /api/user-questionnaire HTTP/1.1" 500 98699 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:22:39 +0300] "GET /debug/default/toolbar?tag=6177acbf2bac0 HTTP/1.1" 302 5 "http://backend.guild.loc/api/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:16 +0300] "GET /api/user-questionnaire HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:16 +0300] "GET /site/login HTTP/1.1" 200 7784 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:16 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 304 0 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:16 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 304 0 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:16 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 304 0 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:16 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 304 0 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:16 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:16 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:16 +0300] "GET /assets/27128343/yii.activeForm.js HTTP/1.1" 304 0 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:16 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:16 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 304 0 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:16 +0300] "GET /debug/default/toolbar?tag=6177add4a3ee0 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:16 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://backend.guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:17 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:30 +0300] "POST /site/login HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:30 +0300] "GET / HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:30 +0300] "GET /site/login HTTP/1.1" 200 7785 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:27:30 +0300] "GET /debug/default/toolbar?tag=6177ade24e428 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:28:54 +0300] "GET /api/user-questionnaire?json HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:28:54 +0300] "GET /debug/default/toolbar?tag=6177ade24e428 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:28:55 +0300] "GET /debug/default/toolbar?tag=6177ade24e428 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:28:56 +0300] "GET /api/user-questionnaire/json/ HTTP/1.1" 404 11868 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:28:56 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/api/user-questionnaire/json/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:28:56 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 32768 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:28:56 +0300] "GET /debug/default/toolbar?tag=6177ae38b4a4f HTTP/1.1" 302 5 "http://backend.guild.loc/api/user-questionnaire/json/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:29:02 +0300] "GET /api/user-questionnaire/ HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:29:02 +0300] "GET /site/login HTTP/1.1" 200 7788 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:29:02 +0300] "GET /debug/default/toolbar?tag=6177ae3e09a30 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:29:02 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:31:24 +0300] "GET /api/skills/json/ HTTP/1.1" 404 7826 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:31:24 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 32768 "http://guild.loc/api/skills/json/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:31:24 +0300] "GET /debug/default/toolbar?tag=6177aecc08415 HTTP/1.1" 200 3436 "http://guild.loc/api/skills/json/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:31:24 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/api/skills/json/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:31:28 +0300] "GET /api/skills/index/ HTTP/1.1" 401 161 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:31:35 +0300] "GET /api/skills/json/ HTTP/1.1" 404 7824 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:31:35 +0300] "GET /debug/default/toolbar?tag=6177aed721139 HTTP/1.1" 200 3436 "http://guild.loc/api/skills/json/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:31:35 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/api/skills/json/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:31:37 +0300] "GET /api/skills/index/ HTTP/1.1" 401 161 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:46:24 +0300] "POST /site/login HTTP/1.1" 200 7896 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:46:24 +0300] "GET /debug/default/toolbar?tag=6177b250cc8c9 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:46:29 +0300] "POST /site/login HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:46:29 +0300] "GET / HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:46:29 +0300] "GET /site/login HTTP/1.1" 200 7789 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:46:29 +0300] "GET /debug/default/toolbar?tag=6177b25563040 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:46:29 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:46:34 +0300] "GET / HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:46:34 +0300] "GET /site/login HTTP/1.1" 200 7787 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:46:35 +0300] "GET /debug/default/toolbar?tag=6177b25aed152 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:46:35 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:46:40 +0300] "POST /site/login HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:46:40 +0300] "GET / HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:46:40 +0300] "GET /site/login HTTP/1.1" 200 7788 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:46:41 +0300] "GET /debug/default/toolbar?tag=6177b260d99f5 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:46:41 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:47:03 +0300] "GET /api/skills/index/ HTTP/1.1" 401 161 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:47:14 +0300] "GET / HTTP/1.1" 200 7757 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:47:14 +0300] "GET /js/site.js HTTP/1.1" 200 596 "http://guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:47:14 +0300] "GET /debug/default/toolbar?tag=6177b282bb0a1 HTTP/1.1" 200 3412 "http://guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:47:22 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:47:22 +0300] "GET /site/login HTTP/1.1" 200 7786 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:47:22 +0300] "GET /debug/default/toolbar?tag=6177b28a52340 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:47:29 +0300] "GET / HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:47:29 +0300] "GET /site/login HTTP/1.1" 200 7787 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:47:29 +0300] "GET /debug/default/toolbar?tag=6177b2912c770 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:48:04 +0300] "POST /site/login HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:48:04 +0300] "GET / HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:48:04 +0300] "GET /site/login HTTP/1.1" 200 7790 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:48:04 +0300] "GET /debug/default/toolbar?tag=6177b2b47f0a7 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:48:25 +0300] "POST /site/login HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:48:25 +0300] "GET / HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:48:25 +0300] "GET /site/login HTTP/1.1" 200 7789 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:48:25 +0300] "GET /debug/default/toolbar?tag=6177b2c9b3653 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:04 +0300] "GET /site/login HTTP/1.1" 200 7790 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:04 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:04 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106548 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:04 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:04 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:04 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 200 288580 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:04 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:04 +0300] "GET /assets/27128343/yii.activeForm.js HTTP/1.1" 200 36765 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:04 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:04 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:04 +0300] "GET /debug/default/toolbar?tag=6177b2f051718 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:04 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://backend.guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:04 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:05 +0300] "POST /site/login HTTP/1.1" 200 7894 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:06 +0300] "GET /debug/default/toolbar?tag=6177b2f1e3228 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:10 +0300] "POST /site/login HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:10 +0300] "GET / HTTP/1.1" 200 12902 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:10 +0300] "GET /assets/39b83f70/js/select2.full.js HTTP/1.1" 200 131072 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:10 +0300] "GET /assets/39b83f70/js/i18n/ru.js HTTP/1.1" 200 1171 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:10 +0300] "GET /debug/default/toolbar?tag=6177b2f650c99 HTTP/1.1" 200 3415 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:10 +0300] "GET /assets/bae3a4f/img/loading-plugin.gif HTTP/1.1" 200 847 "http://backend.guild.loc/assets/bae3a4f/css/kv-widgets.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:10 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 65536 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:49:10 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET / HTTP/1.1" 200 12901 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/bae3a4f/css/kv-widgets.css HTTP/1.1" 200 813 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/5b57ee2f/css/select2-krajee.css HTTP/1.1" 200 20817 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/39b83f70/css/select2.css HTTP/1.1" 200 17358 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/5b57ee2f/css/select2-addl.css HTTP/1.1" 200 994 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106548 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 200 288580 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/39b83f70/js/select2.full.js HTTP/1.1" 200 173566 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/39b83f70/js/i18n/ru.js HTTP/1.1" 200 1171 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/5b57ee2f/js/select2-krajee.js HTTP/1.1" 200 7344 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/bae3a4f/js/kv-widgets.js HTTP/1.1" 200 1061 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 200 9507 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /js/site.js HTTP/1.1" 200 1214 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /debug/default/toolbar?tag=6177b34c3e813 HTTP/1.1" 200 3411 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/bae3a4f/img/loading-plugin.gif HTTP/1.1" 200 847 "http://backend.guild.loc/assets/bae3a4f/css/kv-widgets.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:36 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET / HTTP/1.1" 200 12900 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/39b83f70/css/select2.css HTTP/1.1" 200 17358 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/5b57ee2f/css/select2-addl.css HTTP/1.1" 200 994 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/5b57ee2f/css/select2-krajee.css HTTP/1.1" 200 20817 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/bae3a4f/css/kv-widgets.css HTTP/1.1" 200 813 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106548 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 200 288580 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/39b83f70/js/select2.full.js HTTP/1.1" 200 173566 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/39b83f70/js/i18n/ru.js HTTP/1.1" 200 1171 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/5b57ee2f/js/select2-krajee.js HTTP/1.1" 200 7344 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/bae3a4f/js/kv-widgets.js HTTP/1.1" 200 1061 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 200 9507 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /js/site.js HTTP/1.1" 200 1214 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:37 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:38 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:38 +0300] "GET /debug/default/toolbar?tag=6177b34dadde1 HTTP/1.1" 200 3411 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:38 +0300] "GET /assets/bae3a4f/img/loading-plugin.gif HTTP/1.1" 200 847 "http://backend.guild.loc/assets/bae3a4f/css/kv-widgets.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:38 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:38 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:52 +0300] "GET / HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:52 +0300] "GET /site/login HTTP/1.1" 200 7788 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:52 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:52 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:52 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106548 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:52 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:52 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 200 288580 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:52 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:52 +0300] "GET /assets/27128343/yii.activeForm.js HTTP/1.1" 200 36765 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:52 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:52 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:52 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://backend.guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:52 +0300] "GET /debug/default/toolbar?tag=6177b35c08f57 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:50:52 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:51:08 +0300] "GET /site/login HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:51:08 +0300] "GET / HTTP/1.1" 200 12902 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:51:09 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:51:09 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:51:09 +0300] "GET /assets/39b83f70/js/select2.full.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:51:09 +0300] "GET /assets/39b83f70/js/i18n/ru.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:51:09 +0300] "GET /assets/5b57ee2f/js/select2-krajee.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:51:09 +0300] "GET /assets/bae3a4f/js/kv-widgets.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:51:09 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:51:09 +0300] "GET /js/site.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:51:09 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:51:09 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:51:09 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 304 0 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:10:51:09 +0300] "GET /debug/default/toolbar?tag=6177b36ce524c HTTP/1.1" 200 3412 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:00:05 +0300] "GET /api/skills/index/ HTTP/1.1" 401 161 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:00:32 +0300] "GET /api/skills/H1XmxcupZqYwq66OXwNnv54AZ9nD7r7R/ HTTP/1.1" 404 7826 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:00:32 +0300] "GET /debug/default/toolbar?tag=6177b5a03b3d9 HTTP/1.1" 200 3435 "http://guild.loc/api/skills/H1XmxcupZqYwq66OXwNnv54AZ9nD7r7R/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:00:35 +0300] "GET /api/skills/index/ HTTP/1.1" 401 161 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:04:43 +0300] "GET /api/skills HTTP/1.1" 401 161 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:11:05:47 +0300] "GET /api/skills HTTP/1.1" 401 161 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:11:06:10 +0300] "GET /api/skills HTTP/1.1" 401 161 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:11:20:02 +0300] "GET /api/skills HTTP/1.1" 401 161 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:11:22:29 +0300] "GET /api/skills HTTP/1.1" 401 161 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:11:30:03 +0300] "POST /api/skills HTTP/1.1" 200 24 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:11:34:21 +0300] "POST /api HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:11:34:21 +0300] "GET /site/login HTTP/1.1" 200 7786 "http://backend.guild.loc/api" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:11:38:29 +0300] "GET /gii HTTP/1.1" 200 8218 "http://backend.guild.loc/gii/module" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:38:29 +0300] "GET /assets/7e18d02c/main.css HTTP/1.1" 200 4936 "http://backend.guild.loc/gii" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:38:29 +0300] "GET /assets/7e18d02c/logo.png HTTP/1.1" 200 6677 "http://backend.guild.loc/gii" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:38:29 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/gii" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:38:29 +0300] "GET /debug/default/toolbar?tag=6177be8589515 HTTP/1.1" 200 3388 "http://backend.guild.loc/gii" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:38:29 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/gii" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:38:32 +0300] "GET /gii/model HTTP/1.1" 200 11864 "http://backend.guild.loc/gii" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:38:32 +0300] "GET /assets/b1e9395/typeahead.bundle.js HTTP/1.1" 304 0 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:38:32 +0300] "GET /assets/27128343/yii.validation.js HTTP/1.1" 304 0 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:38:32 +0300] "GET /assets/7e18d02c/gii.js HTTP/1.1" 304 0 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:38:32 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://backend.guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:38:32 +0300] "GET /debug/default/toolbar?tag=6177be87ec630 HTTP/1.1" 200 3393 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:38:40 +0300] "POST /gii/model HTTP/1.1" 200 11925 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:38:40 +0300] "GET /debug/default/toolbar?tag=6177be9093653 HTTP/1.1" 200 3397 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:40:17 +0300] "POST /gii/model HTTP/1.1" 200 12910 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:40:17 +0300] "GET /debug/default/toolbar?tag=6177bef134ddf HTTP/1.1" 200 3398 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:40:22 +0300] "POST /gii/model HTTP/1.1" 200 11996 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:40:22 +0300] "GET /debug/default/toolbar?tag=6177bef684ec3 HTTP/1.1" 200 3397 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:41:56 +0300] "POST /site/login HTTP/1.1" 400 51776 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:41:56 +0300] "GET /debug/default/toolbar?tag=6177bf545e7d5 HTTP/1.1" 200 3449 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:41:56 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:42:02 +0300] "POST /site/login HTTP/1.1" 400 51776 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:42:02 +0300] "GET /debug/default/toolbar?tag=6177bf5a7cd79 HTTP/1.1" 200 3449 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:42:08 +0300] "POST /api HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:11:42:08 +0300] "GET /site/login HTTP/1.1" 200 7790 "http://backend.guild.loc/api" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:11:42:34 +0300] "GET /api HTTP/1.1" 200 11644 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:42:34 +0300] "GET /debug/default/toolbar?tag=6177bf7a57ed6 HTTP/1.1" 200 3398 "http://backend.guild.loc/api" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:42:40 +0300] "GET /api/ HTTP/1.1" 200 11644 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:42:40 +0300] "GET /debug/default/toolbar?tag=6177bf80d43b9 HTTP/1.1" 200 3398 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:42:56 +0300] "GET /api/index/ HTTP/1.1" 404 11876 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:42:56 +0300] "GET /debug/default/toolbar?tag=6177bf903afe4 HTTP/1.1" 200 3437 "http://backend.guild.loc/api/index/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:43:02 +0300] "GET /api/skills/index/ HTTP/1.1" 401 161 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:43:52 +0300] "POST /api/user-questionnaire/ HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:11:43:52 +0300] "GET /site/login HTTP/1.1" 200 7789 "http://backend.guild.loc/api/user-questionnaire/" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:11:44:00 +0300] "GET /api/user-questionnaire/ HTTP/1.1" 401 161 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:44:21 +0300] "GET /api/user-questionnaire/ HTTP/1.1" 500 997 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:44:42 +0300] "GET /api/user-questionnaire/ HTTP/1.1" 500 997 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:44:45 +0300] "GET /api/user-questionnaire/index/ HTTP/1.1" 500 997 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:46:12 +0300] "GET /api/user-questionnaire/index/ HTTP/1.1" 500 997 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:46:18 +0300] "GET /api/user-questionnaire/index/ HTTP/1.1" 500 997 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:46:19 +0300] "GET /api/user-questionnaire/index/ HTTP/1.1" 500 997 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:46:38 +0300] "GET /api/user-questionnaire/index/ HTTP/1.1" 500 997 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:11:46:51 +0300] "POST /api/user-questionnaire/index/ HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:11:46:51 +0300] "GET /site/login HTTP/1.1" 200 7789 "http://backend.guild.loc/api/user-questionnaire/index/" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:11:47:02 +0300] "POST /api/user-questionnaire/index/ HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:11:47:02 +0300] "GET /site/login HTTP/1.1" 200 7791 "http://backend.guild.loc/api/user-questionnaire/index/" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:12:37:14 +0300] "POST /api/skills HTTP/1.1" 200 24 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:12:37:22 +0300] "POST /api/profile HTTP/1.1" 500 4436 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:13:04:33 +0300] "GET /api/user-questionnaire/index/ HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:13:04:33 +0300] "GET /site/login HTTP/1.1" 200 7786 "http://backend.guild.loc/api/user-questionnaire/index/" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:13:05:38 +0300] "GET /api/ HTTP/1.1" 302 5 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:13:05:38 +0300] "GET /site/login HTTP/1.1" 200 7791 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:13:05:39 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://backend.guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:13:05:39 +0300] "GET /debug/default/toolbar?tag=6177d2f2f1786 HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:13:05:44 +0300] "POST /site/login HTTP/1.1" 302 5 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:13:05:44 +0300] "GET /api/ HTTP/1.1" 200 11643 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:13:05:44 +0300] "GET /debug/default/toolbar?tag=6177d2f8338f8 HTTP/1.1" 200 3399 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:13:06:24 +0300] "GET /api/ HTTP/1.1" 200 11646 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:13:06:24 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:13:06:24 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:13:06:24 +0300] "GET /js/site.js HTTP/1.1" 304 0 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:13:06:24 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 304 0 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:13:06:24 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:13:06:24 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 304 0 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:13:06:24 +0300] "GET /debug/default/toolbar?tag=6177d32084e43 HTTP/1.1" 200 3400 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:23:35 +0300] "GET /api/ HTTP/1.1" 500 133518 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:23:35 +0300] "GET /debug/default/toolbar?tag=6177f34760be9 HTTP/1.1" 200 3468 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:23:35 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:24:15 +0300] "GET /api/ HTTP/1.1" 200 11648 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:24:15 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:24:15 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:24:15 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:24:15 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106548 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:24:15 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:24:15 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 200 288580 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:24:15 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:24:15 +0300] "GET /js/site.js HTTP/1.1" 200 1214 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:24:15 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:24:15 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:24:15 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:24:15 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:24:15 +0300] "GET /debug/default/toolbar?tag=6177f36f2f58e HTTP/1.1" 200 3399 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:24:15 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:56:42 +0300] "GET /api/skills/index/ HTTP/1.1" 401 161 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:56:48 +0300] "GET /api/user/ HTTP/1.1" 404 7827 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:56:48 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 304 0 "http://guild.loc/api/user/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:56:48 +0300] "GET /css/site.css HTTP/1.1" 304 0 "http://guild.loc/api/user/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:56:48 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://guild.loc/api/user/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:56:48 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://guild.loc/api/user/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:56:48 +0300] "GET /js/site.js HTTP/1.1" 304 0 "http://guild.loc/api/user/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:56:48 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://guild.loc/api/user/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:56:48 +0300] "GET /debug/default/toolbar?tag=6177fb1018105 HTTP/1.1" 200 3438 "http://guild.loc/api/user/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:56:48 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://guild.loc/api/user/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:15:57:18 +0300] "GET /api/user/login/ HTTP/1.1" 400 113 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:16:04:48 +0300] "GET /api/user/login/ HTTP/1.1" 400 113 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:16:46:35 +0300] "PUT /api/user-questionnaire/index/ HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:16:46:35 +0300] "GET /site/login HTTP/1.1" 200 7792 "http://backend.guild.loc/api/user-questionnaire/index/" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:16:47:04 +0300] "POST /api/user HTTP/1.1" 404 7704 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:16:47:35 +0300] "POST /api/user/login_form HTTP/1.1" 404 7699 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:16:47:46 +0300] "POST /api/user/login-form HTTP/1.1" 404 7701 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:16:48:03 +0300] "POST /api/user/login HTTP/1.1" 400 113 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:16:50:14 +0300] "POST /api/user/login?login=testUser HTTP/1.1" 400 113 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:16:52:42 +0300] "POST /api/user/login?login=testUser HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:16:52:55 +0300] "POST /api/user/login?login=testUser HTTP/1.1" 400 113 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:16:54:06 +0300] "POST /api/user/login?login=testUser HTTP/1.1" 400 113 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:16:55:40 +0300] "POST /api/user/login?login=testUser HTTP/1.1" 400 202 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:16:55:59 +0300] "POST /api/user/login?login=testUser HTTP/1.1" 400 157 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:16:56:12 +0300] "POST /api/user/login?login=testUser HTTP/1.1" 200 101 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:17:06:27 +0300] "POST /api/skills/skills-on-main-page HTTP/1.1" 401 161 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:17:10:05 +0300] "POST /api/skills/skills-on-main-page?token=wU_fP1BWuA2e1kmJua7aa_sdoPjNuUwf HTTP/1.1" 401 161 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:17:12:04 +0300] "POST /api/skills/skills-on-main-page HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:17:12:36 +0300] "POST /api/skills/skills-on-main-page HTTP/1.1" 200 18 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:17:14:08 +0300] "POST /api/user/login?login=testUser HTTP/1.1" 200 101 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:17:18:13 +0300] "GET /api/skills/skills-on-main-page HTTP/1.1" 401 161 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:17:18:42 +0300] "GET /api/skills/skills-on-main-page HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:22:25:33 +0300] "GET /api/skills/skills-on-main-page HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:22:26:46 +0300] "PUT /api/user-questionnaire/index/ HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:22:26:46 +0300] "GET /site/login HTTP/1.1" 200 7790 "http://backend.guild.loc/api/user-questionnaire/index/" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:22:27:01 +0300] "GET /api/user-questionnaire/index/ HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:22:27:01 +0300] "GET /site/login HTTP/1.1" 200 7788 "http://backend.guild.loc/api/user-questionnaire/index/" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:22:27:11 +0300] "GET /api/user-questionnaire/index/ HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:22:27:11 +0300] "GET /site/login HTTP/1.1" 200 7788 "http://backend.guild.loc/api/user-questionnaire/index/" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:22:27:30 +0300] "GET / HTTP/1.1" 200 12904 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:27:30 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:27:30 +0300] "GET /js/site.js HTTP/1.1" 200 1214 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:27:30 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:27:31 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:27:31 +0300] "GET /debug/default/toolbar?tag=617856a2a8df6 HTTP/1.1" 200 3413 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:27:31 +0300] "GET /assets/bae3a4f/img/loading-plugin.gif HTTP/1.1" 200 847 "http://backend.guild.loc/assets/bae3a4f/css/kv-widgets.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:27:31 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 32768 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:27:31 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:27:49 +0300] "GET /api/user-questionnaire/index/ HTTP/1.1" 500 1126 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:28:28 +0300] "GET /api/default/ HTTP/1.1" 200 11644 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:28:28 +0300] "GET /debug/default/toolbar?tag=617856dc800ec HTTP/1.1" 200 3399 "http://backend.guild.loc/api/default/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:28:28 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/api/default/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:29:00 +0300] "GET /api/%20user-questionnaire/ HTTP/1.1" 404 11878 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:29:01 +0300] "GET /debug/default/toolbar?tag=617856fcddfe0 HTTP/1.1" 200 3442 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:29:56 +0300] "GET /api/user-questionnaire/index/ HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:22:29:56 +0300] "GET /site/login HTTP/1.1" 200 7788 "http://backend.guild.loc/api/user-questionnaire/index/" "PostmanRuntime/7.28.4" +127.0.0.1 - - [26/Oct/2021:22:30:08 +0300] "GET /api/%20user-questionnaire/ HTTP/1.1" 404 11872 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:08 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:08 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:08 +0300] "GET /js/site.js HTTP/1.1" 304 0 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:08 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:08 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 304 0 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:08 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 304 0 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:08 +0300] "GET /debug/default/toolbar?tag=61785740c3e9d HTTP/1.1" 200 3445 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:10 +0300] "GET /api/%20user-questionnaire/ HTTP/1.1" 404 11877 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:10 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:10 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:10 +0300] "GET /js/site.js HTTP/1.1" 304 0 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:10 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:10 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 304 0 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:10 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 304 0 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:10 +0300] "GET /debug/default/toolbar?tag=61785742519b8 HTTP/1.1" 200 3444 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:11 +0300] "GET /api/%20user-questionnaire/ HTTP/1.1" 404 11881 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:11 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:11 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:11 +0300] "GET /assets/ccdf1f3a/css/font-awesome.min.css HTTP/1.1" 200 31000 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:11 +0300] "GET /assets/cd83ad4b/css/AdminLTE.min.css HTTP/1.1" 200 106548 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:11 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 41635 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:11 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 200 288580 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:11 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 200 20934 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:11 +0300] "GET /js/site.js HTTP/1.1" 200 1214 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:11 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 200 75484 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:11 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:12 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:12 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:12 +0300] "GET /debug/default/toolbar?tag=61785743d7dfe HTTP/1.1" 200 3435 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:12 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/api/%20user-questionnaire/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:23 +0300] "GET /api/%20user-questionnaire/index/ HTTP/1.1" 404 11879 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:23 +0300] "GET /debug/default/toolbar?tag=6178574f3e64b HTTP/1.1" 200 3440 "http://backend.guild.loc/api/%20user-questionnaire/index/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [26/Oct/2021:22:30:23 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/api/%20user-questionnaire/index/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:46:01 +0300] "GET /gii/model HTTP/1.1" 200 11857 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:46:01 +0300] "GET /assets/7e18d02c/main.css HTTP/1.1" 200 4936 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:46:01 +0300] "GET /assets/7e18d02c/logo.png HTTP/1.1" 200 6677 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:46:01 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:46:01 +0300] "GET /debug/default/toolbar?tag=6178f5a931df4 HTTP/1.1" 200 3391 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:46:04 +0300] "GET /gii/controller HTTP/1.1" 200 9634 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:46:04 +0300] "GET /assets/b1e9395/typeahead.bundle.js HTTP/1.1" 304 0 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:46:04 +0300] "GET /assets/7e18d02c/gii.js HTTP/1.1" 304 0 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:46:04 +0300] "GET /debug/default/toolbar?tag=6178f5ac1b3c7 HTTP/1.1" 200 3391 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:47:03 +0300] "POST /gii/controller HTTP/1.1" 200 10797 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:47:03 +0300] "GET /debug/default/toolbar?tag=6178f5e716d43 HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:47:48 +0300] "POST /gii/controller HTTP/1.1" 200 10798 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:47:48 +0300] "GET /debug/default/toolbar?tag=6178f6148ecf2 HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:48:06 +0300] "POST /gii/controller HTTP/1.1" 200 9817 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:48:06 +0300] "GET /debug/default/toolbar?tag=6178f626758c8 HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:51:24 +0300] "GET /api/user/login/ HTTP/1.1" 400 113 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:51:30 +0300] "GET /gii/form HTTP/1.1" 200 9697 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:51:30 +0300] "GET /debug/default/toolbar?tag=6178f6f20181b HTTP/1.1" 200 3392 "http://backend.guild.loc/gii/form" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:51:41 +0300] "GET /gii/model HTTP/1.1" 200 11854 "http://backend.guild.loc/gii/form" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:51:41 +0300] "GET /debug/default/toolbar?tag=6178f6fd0b8ec HTTP/1.1" 200 3392 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:09:51:41 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:10:03:25 +0300] "GET /api/user-questionnaire HTTP/1.1" 200 34 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:03:55 +0300] "GET /api/user-questionnaire HTTP/1.1" 500 77664 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:04:20 +0300] "GET /api/user-questionnaire HTTP/1.1" 200 17 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:08:06 +0300] "GET /api/user-questionnaire HTTP/1.1" 500 77664 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:08:20 +0300] "GET /api/user-questionnaire HTTP/1.1" 200 34 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:08:45 +0300] "GET /api/user-questionnaire HTTP/1.1" 500 77664 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:11:53 +0300] "GET /api/user-questionnaire HTTP/1.1" 200 39 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:21:55 +0300] "GET /api/user-questionnaire HTTP/1.1" 500 1263 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:30:17 +0300] "GET /api/user-questionnaire/verbs HTTP/1.1" 404 7828 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:35:07 +0300] "GET /api/user-questionnaire/verbs HTTP/1.1" 404 7828 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:35:19 +0300] "GET /api/user-questionnaire/ HTTP/1.1" 200 30 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:35:24 +0300] "POST /api/user-questionnaire/ HTTP/1.1" 200 30 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:35:37 +0300] "PATCH /api/user-questionnaire/ HTTP/1.1" 200 30 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:36:38 +0300] "POST /api/user-questionnaire/ HTTP/1.1" 200 30 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:44:11 +0300] "POST /api/user-questionnaire/ HTTP/1.1" 200 30 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:46:27 +0300] "POST /api/user-questionnaire/ HTTP/1.1" 200 48 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:46:32 +0300] "POST /api/user-questionnaire/ HTTP/1.1" 200 48 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:47:12 +0300] "POST /api/user-questionnaire/ HTTP/1.1" 200 48 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:47:24 +0300] "POST /api/user-questionnaire/ HTTP/1.1" 200 30 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:48:40 +0300] "POST /api/user-questionnaire/ HTTP/1.1" 405 236 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:49:00 +0300] "POST /api/user-questionnaire/ HTTP/1.1" 405 236 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:49:13 +0300] "POST /api/user-questionnaire/ HTTP/1.1" 405 236 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:49:20 +0300] "POST /api/user-questionnaire/ HTTP/1.1" 405 235 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:49:25 +0300] "GET /api/user-questionnaire/ HTTP/1.1" 200 30 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:49:54 +0300] "GET /api/user-questionnaire/ HTTP/1.1" 200 30 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:50:03 +0300] "GET /api/user-questionnaire/ HTTP/1.1" 401 192 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:50:15 +0300] "GET /api/user-questionnaire/ HTTP/1.1" 401 192 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:56:13 +0300] "GET /api/user-questionnaire/ HTTP/1.1" 401 192 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:56:40 +0300] "GET /api/user-questionnaire/ HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:10:56:56 +0300] "GET /api/user-questionnaire/?fdgfgf=4444 HTTP/1.1" 200 35 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:02:14 +0300] "GET /api/user-questionnaire/?user_id=4444 HTTP/1.1" 500 1070 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:02:42 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 500 1410 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:02:58 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 277 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:03:22 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 277 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:03:27 +0300] "GET /api/user-questionnaire/?user_id=100 HTTP/1.1" 500 1070 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:04:18 +0300] "GET /api/user-questionnaire/?user_id=100 HTTP/1.1" 404 154 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:04:30 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 277 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:07:29 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 125 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:09:41 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 125 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:10:08 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 88 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:11:44 +0300] "GET /api/ HTTP/1.1" 200 11644 "http://backend.guild.loc/site/login" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:44 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:44 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:44 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:44 +0300] "GET /assets/cd83ad4b/css/skins/_all-skins.min.css HTTP/1.1" 200 32768 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:44 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 200 13611 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:44 +0300] "GET /assets/ccdf1f3a/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 77160 "http://backend.guild.loc/assets/ccdf1f3a/css/font-awesome.min.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:44 +0300] "GET /debug/default/toolbar?tag=617909c051d00 HTTP/1.1" 200 3401 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:45 +0300] "GET /api/user-questionnaire/index/ HTTP/1.1" 200 32 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:51 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 13110 "http://backend.guild.loc/api/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:51 +0300] "GET /debug/default/toolbar?tag=617909c7b4e47 HTTP/1.1" 200 3419 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:52 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:54 +0300] "GET /questionnaire/user-questionnaire/create HTTP/1.1" 200 13292 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:54 +0300] "GET /assets/69f58a44/css/dependent-dropdown.css HTTP/1.1" 200 518 "http://backend.guild.loc/questionnaire/user-questionnaire/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:54 +0300] "GET /assets/69f58a44/js/dependent-dropdown.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:54 +0300] "GET /assets/f3677068/js/depdrop.js HTTP/1.1" 200 986 "http://backend.guild.loc/questionnaire/user-questionnaire/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:54 +0300] "GET /debug/default/toolbar?tag=617909ca217c5 HTTP/1.1" 200 3422 "http://backend.guild.loc/questionnaire/user-questionnaire/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:54 +0300] "GET /assets/bae3a4f/img/loading-plugin.gif HTTP/1.1" 200 847 "http://backend.guild.loc/assets/bae3a4f/css/kv-widgets.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:57 +0300] "GET /assets/69f58a44/img/loading.gif HTTP/1.1" 200 1849 "http://backend.guild.loc/assets/69f58a44/css/dependent-dropdown.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:11:57 +0300] "POST /questionnaire/user-questionnaire/questionnaire HTTP/1.1" 200 157 "http://backend.guild.loc/questionnaire/user-questionnaire/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:12:00 +0300] "GET /assets/5b57ee2f/css/loading.gif HTTP/1.1" 200 1737 "http://backend.guild.loc/assets/5b57ee2f/css/select2-krajee.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:12:00 +0300] "GET /assets/5b57ee2f/css/search.png HTTP/1.1" 200 269 "http://backend.guild.loc/assets/5b57ee2f/css/select2-krajee.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:12:10 +0300] "POST /questionnaire/user-questionnaire/create HTTP/1.1" 302 5 "http://backend.guild.loc/questionnaire/user-questionnaire/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:12:10 +0300] "GET /questionnaire/user-questionnaire/view?id=2 HTTP/1.1" 200 12715 "http://backend.guild.loc/questionnaire/user-questionnaire/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:12:10 +0300] "GET /debug/default/toolbar?tag=617909da5e84d HTTP/1.1" 200 3417 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:12:27 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 200 88 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:12:43 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 500 1080 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:13:19 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 200 325 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:13:42 +0300] "GET /questionnaire/user-questionnaire/index HTTP/1.1" 200 13278 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=2" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:13:42 +0300] "GET /debug/default/toolbar?tag=61790a36239dc HTTP/1.1" 200 3418 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:11:14:05 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 200 325 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:14:52 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 200 52 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:15:17 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 200 325 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:15:42 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 200 327 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:30:44 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:31:05 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 200 638 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:32:46 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:34:35 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 404 154 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:34:48 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 200 638 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:35:05 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 200 638 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:43:18 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 200 219 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:46:37 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 200 52 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:51:14 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 500 1208 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:51:46 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 500 1207 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:52:18 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 33 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:52:43 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 219 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:53:22 +0300] "GET /api/user-questionnaire/ HTTP/1.1" 500 1212 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:56:40 +0300] "GET /api/user-questionnaire/ HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:56:48 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:56:51 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:58:37 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:58:46 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:58:51 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:58:58 +0300] "GET /api/user-questionnaire/ HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:59:02 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:59:06 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:59:21 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 13 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:59:31 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 33 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:11:59:36 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 200 52 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:00:15 +0300] "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1" 200 13 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:00:26 +0300] "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1" 200 19 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:01:56 +0300] "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1" 200 843 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:02:56 +0300] "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:03:36 +0300] "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:06:29 +0300] "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1" 200 58 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:06:48 +0300] "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:07:03 +0300] "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:09:17 +0300] "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1" 200 15 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:09:34 +0300] "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1" 200 19 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:10:07 +0300] "GET /api/user-questionnaire/?status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:12:07 +0300] "GET /api/user-questionnaire/?status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:12:16 +0300] "GET /api/user-questionnaire/?status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:12:19 +0300] "GET /api/user-questionnaire/?status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:12:33 +0300] "GET /api/user-questionnaire/?status=1 HTTP/1.1" 200 17 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:12:43 +0300] "GET /api/user-questionnaire/?status=1 HTTP/1.1" 200 15 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:12:56 +0300] "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1" 200 15 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:13:14 +0300] "GET /api/user-questionnaire/?user_id=&status=1 HTTP/1.1" 200 15 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:13:19 +0300] "GET /api/user-questionnaire/?user_id=556&status=1 HTTP/1.1" 200 15 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:13:21 +0300] "GET /api/user-questionnaire/?user_id=556&status=1 HTTP/1.1" 200 15 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:13:43 +0300] "GET /api/user-questionnaire/?user_id=556&status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:13:55 +0300] "GET /api/user-questionnaire/?user_id=556&status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:14:19 +0300] "GET /api/user-questionnaire/?user_id=556&status=1 HTTP/1.1" 200 15 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:14:26 +0300] "GET /api/user-questionnaire/?user_id=556&status=1 HTTP/1.1" 200 15 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:14:51 +0300] "GET /api/user-questionnaire/?user_id=556&status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:15:02 +0300] "GET /api/user-questionnaire/?user_id=556&status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:15:07 +0300] "GET /api/user-questionnaire/?user_id=5&status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:15:49 +0300] "GET /api/user-questionnaire/?user_id=5&status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:16:00 +0300] "GET /api/user-questionnaire/?user_id=5&status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:16:04 +0300] "GET /api/user-questionnaire/?user_id=5f&status=1 HTTP/1.1" 200 15 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:16:11 +0300] "GET /api/user-questionnaire/?user_id=5.2&status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:16:19 +0300] "GET /api/user-questionnaire/?user_id=gfmklfggf&status=1 HTTP/1.1" 200 15 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:16:27 +0300] "GET /api/user-questionnaire/?user_id=4344r&status=1 HTTP/1.1" 200 15 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:16:30 +0300] "GET /api/user-questionnaire/?user_id=4344&status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:16:51 +0300] "GET /api/user-questionnaire/?user_id=4344&status=1 HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:16:59 +0300] "GET /api/user-questionnaire/?user_id=4344&status=1 HTTP/1.1" 200 13 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:18:23 +0300] "GET /api/user-questionnaire/?user_id=4344&status=1 HTTP/1.1" 500 1220 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:18:45 +0300] "GET /api/user-questionnaire/?user_id=4344&status=1 HTTP/1.1" 404 154 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:18:51 +0300] "GET /api/user-questionnaire/?user_id=4344&status=1 HTTP/1.1" 404 154 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:18:56 +0300] "GET /api/user-questionnaire/?user_id=4344&status=2 HTTP/1.1" 404 154 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:19:00 +0300] "GET /api/user-questionnaire/?user_id=4344&status=1 HTTP/1.1" 404 154 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:19:15 +0300] "GET /api/user-questionnaire/?user_id=4 HTTP/1.1" 404 154 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:19:20 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 219 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:19:47 +0300] "GET /api/user-questionnaire/?user_id=fbfg HTTP/1.1" 404 155 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:20:04 +0300] "GET /api/user-questionnaire/?user_id=1 HTTP/1.1" 200 219 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:20:27 +0300] "GET /gii/controller HTTP/1.1" 200 9638 "http://backend.guild.loc/gii/model" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:12:20:27 +0300] "GET /assets/27128343/yii.activeForm.js HTTP/1.1" 200 36765 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:12:20:27 +0300] "GET /debug/default/toolbar?tag=617919db40f19 HTTP/1.1" 200 3388 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:12:20:27 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:12:20:58 +0300] "POST /gii/controller HTTP/1.1" 200 10798 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:12:20:58 +0300] "GET /debug/default/toolbar?tag=617919fa4df1c HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:12:20:58 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:12:21:07 +0300] "POST /gii/controller HTTP/1.1" 200 9816 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:12:21:07 +0300] "GET /debug/default/toolbar?tag=61791a0366ec5 HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:12:23:02 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 219 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:23:14 +0300] "PUT /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 405 235 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:30:01 +0300] "PUT /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 405 235 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:30:06 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 500 1128 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:30:17 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 219 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:41:16 +0300] "GET /api/user-questionnaire/questionnaires?$questionnaire_id=1 HTTP/1.1" 404 7824 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:41:25 +0300] "GET /api/user-questionnaire/questionnaires?$questionnaire_id=1 HTTP/1.1" 404 7826 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:42:30 +0300] "GET /api/questionnaire/get-questionnaire HTTP/1.1" 500 93648 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:42:46 +0300] "GET /api/questionnaire/get-questionnaire HTTP/1.1" 500 93648 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:43:00 +0300] "GET /api/questionnaire/get-questionnaire HTTP/1.1" 500 93648 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:43:10 +0300] "GET /api/questionnaire/get-questionnaire HTTP/1.1" 500 93648 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:43:12 +0300] "GET /api/questionnaire/get-questionnaire HTTP/1.1" 500 93648 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:43:56 +0300] "GET /api/questionnaire/get-questionnaire HTTP/1.1" 500 93648 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:44:28 +0300] "GET /api/questionnaire/get-questionnaire HTTP/1.1" 500 93648 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:44:30 +0300] "GET /api/questionnaire/get-questionnaire HTTP/1.1" 500 93648 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:44:58 +0300] "GET /api/questionnaire/get-questionnaire HTTP/1.1" 404 164 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:45:23 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 35 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:49:59 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 35 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:50:13 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 225 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:56:36 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4209 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:56:52 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4154 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:57:23 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 1017 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:57:29 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 1017 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:57:54 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 1347 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:12:58:36 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4238 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:00:20 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 265 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:00:56 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4189 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:03:54 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 1017 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:04:12 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 1017 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:04:39 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 265 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:25:20 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 265 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:25:27 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4184 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:27:58 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4528 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:28:29 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4191 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:30:22 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 265 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:32:12 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 699 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:32:37 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 699 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:33:38 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 699 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:34:42 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 664 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:35:36 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 2855 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:36:17 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 1762 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:36:44 +0300] "GET /questionnaire/questionnaire HTTP/1.1" 200 13327 "http://backend.guild.loc/questionnaire/user-questionnaire/index" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:13:36:44 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:13:36:44 +0300] "GET /debug/default/toolbar?tag=61792bbc4a7e0 HTTP/1.1" 200 3415 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:13:36:46 +0300] "GET /questionnaire/questionnaire/view?id=1 HTTP/1.1" 200 12813 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:13:36:46 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 304 0 "http://backend.guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:13:36:46 +0300] "GET /debug/default/toolbar?tag=61792bbe68539 HTTP/1.1" 200 3412 "http://backend.guild.loc/questionnaire/questionnaire/view?id=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:13:37:32 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4508 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:38:33 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4218 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:39:08 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4210 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:39:34 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4204 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:41:23 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 265 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:41:35 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 1017 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:42:18 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 1243 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:42:30 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 2855 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:43:31 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 2855 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:44:40 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 1088 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:45:19 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 1088 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:49:54 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4522 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:50:16 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4520 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:52:00 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 1041 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:52:19 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 272 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:58:01 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4522 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:58:29 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4522 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:58:40 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4177 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:13:58:50 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 4065 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:00:06 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4522 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:03:07 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4312 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:03:25 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4312 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:03:31 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 4058 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:03:43 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 6413 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:05:50 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4312 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:08:39 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 4058 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:09:11 +0300] "GET /questionnaire/questionnaire HTTP/1.1" 200 13328 "http://backend.guild.loc/questionnaire/questionnaire/view?id=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:09:11 +0300] "GET /debug/default/toolbar?tag=6179335763b74 HTTP/1.1" 200 3413 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:09:11 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:09:32 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 301 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:10:23 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 4058 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:14:57 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 1386 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:15:37 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 1455 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:16:06 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 1455 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:16:19 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 1455 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:16:24 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 1455 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:16:50 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 690 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:18:21 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 30 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:20:16 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 30 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:21:42 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 30 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:21:50 +0300] "POST /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 405 235 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:21:55 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 30 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:27:14 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 11 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:29:23 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 11 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:29:41 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=2 HTTP/1.1" 404 168 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:29:56 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=3 HTTP/1.1" 200 11 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:30:23 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=3 HTTP/1.1" 200 283 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:30:30 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=2 HTTP/1.1" 404 168 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:30:34 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 4058 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:35:48 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 219 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:36:22 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 13273 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:22 +0300] "GET /debug/default/toolbar?tag=617939b63d734 HTTP/1.1" 200 3417 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:26 +0300] "GET /questionnaire/user-questionnaire/update?id=2 HTTP/1.1" 200 13325 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:26 +0300] "GET /assets/bae3a4f/css/kv-widgets.css HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:26 +0300] "GET /assets/39b83f70/css/select2.css HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:26 +0300] "GET /assets/5b57ee2f/css/select2-addl.css HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:26 +0300] "GET /assets/5b57ee2f/css/select2-krajee.css HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:26 +0300] "GET /assets/27128343/yii.validation.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:26 +0300] "GET /assets/bae3a4f/js/kv-widgets.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:26 +0300] "GET /assets/39b83f70/js/select2.full.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:26 +0300] "GET /assets/39b83f70/js/i18n/ru.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:26 +0300] "GET /assets/5b57ee2f/js/select2-krajee.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:26 +0300] "GET /assets/27128343/yii.activeForm.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:26 +0300] "GET /debug/default/toolbar?tag=617939ba0543e HTTP/1.1" 200 3418 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:33 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 13274 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:33 +0300] "GET /debug/default/toolbar?tag=617939c161f48 HTTP/1.1" 200 3418 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:36 +0300] "GET /questionnaire/user-questionnaire/update?id=2 HTTP/1.1" 200 13323 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:37 +0300] "GET /debug/default/toolbar?tag=617939c4d1f4c HTTP/1.1" 200 3418 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:36:39 +0300] "POST /questionnaire/user-questionnaire/questionnaire HTTP/1.1" 200 157 "http://backend.guild.loc/questionnaire/user-questionnaire/update?id=2" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:37:00 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 13272 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:37:00 +0300] "GET /debug/default/toolbar?tag=617939dc7bac3 HTTP/1.1" 200 3417 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:37:35 +0300] "GET /questionnaire/user-questionnaire HTTP/1.1" 200 13274 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:37:35 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:37:35 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:37:35 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:37:35 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:37:35 +0300] "GET /js/site.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:37:35 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:37:35 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:37:35 +0300] "GET /debug/default/toolbar?tag=617939ff83d99 HTTP/1.1" 200 3418 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:14:37:43 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 116 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:38:59 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 1292 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:39:14 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 4065 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:39:58 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 4058 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:40:07 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 4058 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:40:43 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 4909 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:40:58 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 4058 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:41:43 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 2766 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:42:01 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 4058 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:42:54 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 2304 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:43:08 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 4058 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:44:08 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 4058 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:45:02 +0300] "GET /api/user-questionnaire/index/ HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:45:03 +0300] "GET /site/login HTTP/1.1" 200 7788 "http://backend.guild.loc/api/user-questionnaire/index/" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:45:20 +0300] "GET /api/skills/skills-on-main-page HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:45:29 +0300] "POST /api/user/login?login=testUser HTTP/1.1" 200 114 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:45:45 +0300] "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1" 200 116 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:45:49 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 401 192 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:45:55 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 4058 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:48:33 +0300] "GET /api/user-questionnaire/index/ HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:48:33 +0300] "GET /site/login HTTP/1.1" 200 7790 "http://backend.guild.loc/api/user-questionnaire/index/" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:57:32 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:14:57:42 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:00:15 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 4058 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:01:11 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:01:31 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 1535 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:01:50 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 2244 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:01:53 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 2244 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:01:55 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 2244 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:01:56 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 2244 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:01:57 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 2244 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:02:08 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:02:23 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 2244 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:04:59 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 500 4092 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:05:10 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 2935 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:05:29 +0300] "GET /questionnaire/user-questionnaire/view?id=1 HTTP/1.1" 200 13091 "http://backend.guild.loc/questionnaire/user-questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:05:30 +0300] "GET /debug/default/toolbar?tag=61794089d25b7 HTTP/1.1" 200 3418 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:05:30 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:05:39 +0300] "GET /questionnaire/questionnaire HTTP/1.1" 200 13332 "http://backend.guild.loc/questionnaire/user-questionnaire/view?id=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:05:39 +0300] "GET /debug/default/toolbar?tag=617940935aa4a HTTP/1.1" 200 3410 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:05:41 +0300] "GET /questionnaire/questionnaire/view?id=1 HTTP/1.1" 200 12813 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:05:41 +0300] "GET /debug/default/toolbar?tag=6179409582710 HTTP/1.1" 200 3413 "http://backend.guild.loc/questionnaire/questionnaire/view?id=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:06:21 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 1812 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:08:16 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 1812 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:08:34 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=hh HTTP/1.1" 404 164 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:08:41 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=10 HTTP/1.1" 500 1324 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:11:45 +0300] "POST /gii/controller HTTP/1.1" 200 10786 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:11:45 +0300] "GET /debug/default/toolbar?tag=6179420167538 HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:11:45 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:11:49 +0300] "POST /gii/controller HTTP/1.1" 200 9810 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:11:49 +0300] "GET /debug/default/toolbar?tag=617942051e602 HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:12:43 +0300] "POST /gii/controller HTTP/1.1" 200 10846 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:12:43 +0300] "GET /debug/default/toolbar?tag=6179423b17993 HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:12:47 +0300] "POST /gii/controller HTTP/1.1" 200 9814 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:12:48 +0300] "GET /debug/default/toolbar?tag=6179423fd458f HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:18:14 +0300] "POST /gii/controller HTTP/1.1" 200 10785 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:18:14 +0300] "GET /debug/default/toolbar?tag=6179438666ef0 HTTP/1.1" 200 3397 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:18:17 +0300] "POST /gii/controller HTTP/1.1" 200 9811 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:18:18 +0300] "GET /debug/default/toolbar?tag=61794389de7d4 HTTP/1.1" 200 3393 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:20:48 +0300] "GET /gii/controller HTTP/1.1" 200 9640 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:20:49 +0300] "GET /assets/7e18d02c/logo.png HTTP/1.1" 200 6677 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:20:49 +0300] "GET /assets/7e18d02c/main.css HTTP/1.1" 304 0 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:20:49 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:20:49 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:20:49 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:20:49 +0300] "GET /assets/27128343/yii.validation.js HTTP/1.1" 304 0 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:20:49 +0300] "GET /assets/27128343/yii.activeForm.js HTTP/1.1" 304 0 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:20:49 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:20:49 +0300] "GET /assets/b1e9395/typeahead.bundle.js HTTP/1.1" 304 0 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:20:49 +0300] "GET /assets/7e18d02c/gii.js HTTP/1.1" 304 0 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:20:49 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://backend.guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:20:50 +0300] "GET /debug/default/toolbar?tag=6179442084a2a HTTP/1.1" 200 3394 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:20:50 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:30:18 +0300] "GET /api/user/login/ HTTP/1.1" 400 144 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:30:20 +0300] "GET /questionnaire/questionnaire/view?id=1 HTTP/1.1" 200 12814 "http://backend.guild.loc/questionnaire/questionnaire" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:30:20 +0300] "GET /assets/71772193/css/bootstrap.css HTTP/1.1" 200 145933 "http://backend.guild.loc/questionnaire/questionnaire/view?id=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:30:20 +0300] "GET /css/site.css HTTP/1.1" 200 805 "http://backend.guild.loc/questionnaire/questionnaire/view?id=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:30:20 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 200 7070 "http://backend.guild.loc/questionnaire/questionnaire/view?id=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:30:20 +0300] "GET /assets/71772193/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 200 18028 "http://backend.guild.loc/assets/71772193/css/bootstrap.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:30:20 +0300] "GET /debug/default/toolbar?tag=6179465c377be HTTP/1.1" 200 3410 "http://backend.guild.loc/questionnaire/questionnaire/view?id=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:30:20 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/questionnaire/view?id=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:30:34 +0300] "POST /gii/controller HTTP/1.1" 200 10783 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:30:34 +0300] "GET /debug/default/toolbar?tag=6179466abfccf HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:30:51 +0300] "POST /gii/controller HTTP/1.1" 200 9800 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:30:51 +0300] "GET /debug/default/toolbar?tag=6179467b44522 HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:31:19 +0300] "POST /gii/controller HTTP/1.1" 200 10732 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:31:19 +0300] "GET /debug/default/toolbar?tag=617946975d4ef HTTP/1.1" 200 3396 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:31:19 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:36:54 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=10 HTTP/1.1" 500 1324 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:37:08 +0300] "GET /api/user-questionnaire/index/ HTTP/1.1" 302 5 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:37:08 +0300] "GET /site/login HTTP/1.1" 200 7789 "http://backend.guild.loc/api/user-questionnaire/index/" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:37:20 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=10 HTTP/1.1" 500 1324 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:37:27 +0300] "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1" 200 1812 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:39:54 +0300] "POST /gii/controller HTTP/1.1" 200 10805 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:39:54 +0300] "GET /debug/default/toolbar?tag=6179489a66a57 HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:40:06 +0300] "POST /gii/controller HTTP/1.1" 200 9810 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:40:06 +0300] "GET /debug/default/toolbar?tag=617948a6b1056 HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:49:43 +0300] "POST /gii/controller HTTP/1.1" 200 10798 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:49:43 +0300] "GET /debug/default/toolbar?tag=61794ae731ddd HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:49:43 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:50:27 +0300] "POST /gii/controller HTTP/1.1" 200 10801 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:50:27 +0300] "GET /debug/default/toolbar?tag=61794b13bd899 HTTP/1.1" 200 3396 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:50:30 +0300] "POST /gii/controller HTTP/1.1" 200 9807 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:50:30 +0300] "GET /debug/default/toolbar?tag=61794b16b19ba HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:50:42 +0300] "POST /gii/controller HTTP/1.1" 200 10844 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:50:42 +0300] "GET /debug/default/toolbar?tag=61794b224131e HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:15:54:30 +0300] "GET /api/question/get-questions?questionnaire_id=1 HTTP/1.1" 200 13 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:58:33 +0300] "GET /api/question/get-questions?questionnaire_id=1 HTTP/1.1" 200 1812 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:15:59:06 +0300] "GET /api/question/get-questions?questionnaire_id=10 HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:00:23 +0300] "GET /api/question/get-questions?questionnaire_id=10 HTTP/1.1" 404 168 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:00:48 +0300] "GET /api/question/get-questions?questionnaire_id=10 HTTP/1.1" 404 168 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:00:55 +0300] "GET /api/question/get-questions?questionnaire_id=2 HTTP/1.1" 404 168 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:00:59 +0300] "GET /api/question/get-questions?questionnaire_id=dfsdfsd HTTP/1.1" 404 164 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:01:05 +0300] "GET /api/question/get-questions?questionnaire_id=1 HTTP/1.1" 500 1273 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:01:19 +0300] "GET /api/question/get-questions?questionnaire_id=1 HTTP/1.1" 500 1273 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:01:57 +0300] "GET /api/question/get-questions?questionnaire_id=1 HTTP/1.1" 200 1812 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:03:17 +0300] "GET /api/question/get-questions?questionnaire_id=1 HTTP/1.1" 200 1256 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:06:01 +0300] "POST /gii/controller HTTP/1.1" 200 10782 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:06:01 +0300] "GET /debug/default/toolbar?tag=61794eb98c638 HTTP/1.1" 200 3394 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:06:14 +0300] "POST /gii/controller HTTP/1.1" 200 9811 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:06:14 +0300] "GET /debug/default/toolbar?tag=61794ec6c29f0 HTTP/1.1" 200 3397 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:16:30 +0300] "GET /api/question/get-questions?questionnaire_id=1 HTTP/1.1" 200 1256 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:17:15 +0300] "GET /api/answer/get-answers?question_id=1 HTTP/1.1" 500 1076 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:17:53 +0300] "GET /api/answer/get-answers?question_id=1 HTTP/1.1" 500 1070 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:18:09 +0300] "GET /api/answer/get-answers?question_id=1 HTTP/1.1" 500 1150 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:20:49 +0300] "GET /api/answer/get-answers?question_id=1 HTTP/1.1" 404 168 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:21:10 +0300] "GET /api/answer/get-answers?question_id=3 HTTP/1.1" 404 168 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:21:16 +0300] "GET /api/answer/get-answers?question_id=4 HTTP/1.1" 200 392 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:24:31 +0300] "GET /api/answer/get-answers?question_id=5 HTTP/1.1" 200 649 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:25:26 +0300] "GET /api/answer/get-answers?question_id=5 HTTP/1.1" 200 379 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:25:35 +0300] "GET /api/answer/get-answers?question_id=6 HTTP/1.1" 404 168 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:25:44 +0300] "GET /api/answer/get-answers?question_id=5 HTTP/1.1" 200 379 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:25:54 +0300] "GET /questionnaire/question HTTP/1.1" 200 13843 "http://backend.guild.loc/questionnaire/questionnaire/view?id=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:25:55 +0300] "GET /debug/default/toolbar?tag=61795362c87d1 HTTP/1.1" 200 3413 "http://backend.guild.loc/questionnaire/question" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:26:07 +0300] "GET /questionnaire/question/view?id=6 HTTP/1.1" 200 11979 "http://backend.guild.loc/questionnaire/question" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:26:08 +0300] "GET /debug/default/toolbar?tag=6179536fe4c4e HTTP/1.1" 200 3414 "http://backend.guild.loc/questionnaire/question/view?id=6" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:26:11 +0300] "GET /questionnaire/answer HTTP/1.1" 200 14409 "http://backend.guild.loc/questionnaire/question/view?id=6" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:26:11 +0300] "GET /debug/default/toolbar?tag=6179537391761 HTTP/1.1" 200 3412 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:26:14 +0300] "GET /questionnaire/question/view?id=6 HTTP/1.1" 200 11982 "http://backend.guild.loc/questionnaire/question" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:26:14 +0300] "GET /debug/default/toolbar?tag=617953765e3de HTTP/1.1" 200 3414 "http://backend.guild.loc/questionnaire/question/view?id=6" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:26:16 +0300] "GET /questionnaire/question HTTP/1.1" 200 13838 "http://backend.guild.loc/questionnaire/questionnaire/view?id=1" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:26:16 +0300] "GET /debug/default/toolbar?tag=6179537806b3c HTTP/1.1" 200 3412 "http://backend.guild.loc/questionnaire/question" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:26:21 +0300] "GET /questionnaire/question HTTP/1.1" 200 13844 "http://backend.guild.loc/questionnaire/question" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:26:21 +0300] "GET /debug/default/toolbar?tag=6179537da0ffe HTTP/1.1" 200 3411 "http://backend.guild.loc/questionnaire/question" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:26:42 +0300] "GET /questionnaire/answer HTTP/1.1" 200 14415 "http://backend.guild.loc/questionnaire/question" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:26:42 +0300] "GET /debug/default/toolbar?tag=6179539232c15 HTTP/1.1" 200 3413 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:26:52 +0300] "GET /api/answer/get-answers?question_id=6 HTTP/1.1" 404 168 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:26:57 +0300] "GET /api/answer/get-answers?question_id=7 HTTP/1.1" 200 872 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:34:03 +0300] "POST /gii/controller HTTP/1.1" 200 10789 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:34:03 +0300] "GET /debug/default/toolbar?tag=6179554b016ab HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:34:14 +0300] "POST /gii/controller HTTP/1.1" 200 9820 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:34:14 +0300] "GET /debug/default/toolbar?tag=6179555603ba8 HTTP/1.1" 200 3395 "http://backend.guild.loc/gii/controller" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:16:53:54 +0300] "GET /api/user-response/set-response HTTP/1.1" 500 98824 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:54:17 +0300] "GET /api/user-response/set-response HTTP/1.1" 500 98824 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:55:32 +0300] "GET /api/user-response/set-responses HTTP/1.1" 500 98824 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:56:34 +0300] "GET /api/user-response/set-responses HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:56:49 +0300] "POST /api/user-response/set-responses HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:56:53 +0300] "GET /api/user-response/set-responses HTTP/1.1" 405 236 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:16:58:07 +0300] "POST /api/user-response/actions HTTP/1.1" 404 7827 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:07:55 +0300] "POST /api/user-response/actions?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1" 404 7826 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:08:12 +0300] "POST /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:08:56 +0300] "POST /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:08:58 +0300] "POST /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:09:10 +0300] "POST /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:09:12 +0300] "POST /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:09:26 +0300] "POST /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:09:31 +0300] "POST /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:10:43 +0300] "POST /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:10:49 +0300] "POST /api/user-response/create HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:11:03 +0300] "POST /api/user-response/create HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:11:31 +0300] "POST /api/user-response/create HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:11:34 +0300] "POST /api/user-response/create HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:11:47 +0300] "GET /api/user-response/create HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:11:54 +0300] "GET /api/user-response/createdd HTTP/1.1" 404 7827 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:12:06 +0300] "GET /api/user-response/create HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:13:16 +0300] "GET /api/user-response/create HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:13:22 +0300] "GET /api/answer/get-answers?question_id=7 HTTP/1.1" 200 872 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:14:33 +0300] "POST /api/user-response/create HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:14:36 +0300] "GET /api/user-response/create HTTP/1.1" 405 236 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:15:54 +0300] "GET /api/user-response/create HTTP/1.1" 405 236 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:15:58 +0300] "POST /api/user-response/create HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:16:16 +0300] "GET /api/user-response/create HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:16:20 +0300] "GET /api/user-response/create HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:17:03 +0300] "GET /questionnaire/user-response HTTP/1.1" 500 107400 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:53 +0300] "GET /questionnaire/user-response HTTP/1.1" 200 13994 "http://backend.guild.loc/questionnaire/answer" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:53 +0300] "GET /assets/cd83ad4b/img/user2-160x160.jpg HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-response" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:54 +0300] "GET /assets/5aa3f20b/jquery.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-response" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:54 +0300] "GET /assets/27128343/yii.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-response" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:54 +0300] "GET /js/site.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-response" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:54 +0300] "GET /assets/27128343/yii.gridView.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-response" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:54 +0300] "GET /assets/71772193/js/bootstrap.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-response" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:54 +0300] "GET /assets/cd83ad4b/js/adminlte.min.js HTTP/1.1" 304 0 "http://backend.guild.loc/questionnaire/user-response" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:54 +0300] "GET /debug/default/toolbar?tag=61795f91b03ab HTTP/1.1" 200 3422 "http://backend.guild.loc/questionnaire/user-response" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:54 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-response" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:55 +0300] "GET /questionnaire/user-response/create HTTP/1.1" 200 13344 "http://backend.guild.loc/questionnaire/user-response" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:55 +0300] "GET /assets/39b83f70/css/select2.css HTTP/1.1" 200 17358 "http://backend.guild.loc/questionnaire/user-response/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:55 +0300] "GET /assets/5b57ee2f/css/select2-addl.css HTTP/1.1" 200 994 "http://backend.guild.loc/questionnaire/user-response/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:55 +0300] "GET /debug/default/toolbar?tag=61795f9392ddd HTTP/1.1" 200 3421 "http://backend.guild.loc/questionnaire/user-response/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:55 +0300] "GET /assets/bae3a4f/img/loading-plugin.gif HTTP/1.1" 200 847 "http://backend.guild.loc/assets/bae3a4f/css/kv-widgets.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:59 +0300] "GET /assets/5b57ee2f/css/search.png HTTP/1.1" 200 269 "http://backend.guild.loc/assets/5b57ee2f/css/select2-krajee.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:17:59 +0300] "GET /assets/5b57ee2f/css/loading.gif HTTP/1.1" 200 1737 "http://backend.guild.loc/assets/5b57ee2f/css/select2-krajee.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:18:01 +0300] "POST /questionnaire/user-response/create HTTP/1.1" 302 5 "http://backend.guild.loc/questionnaire/user-response/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:18:01 +0300] "GET /questionnaire/user-response/view?id=31 HTTP/1.1" 500 95906 "http://backend.guild.loc/questionnaire/user-response/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:18:05 +0300] "GET /questionnaire/user-response/create HTTP/1.1" 200 13343 "http://backend.guild.loc/questionnaire/user-response" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:18:05 +0300] "GET /debug/default/toolbar?tag=61795f9d1a4be HTTP/1.1" 200 3420 "http://backend.guild.loc/questionnaire/user-response/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:18:05 +0300] "GET /favicon.ico HTTP/1.1" 200 318 "http://backend.guild.loc/questionnaire/user-response/create" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:93.0) Gecko/20100101 Firefox/93.0" +127.0.0.1 - - [27/Oct/2021:17:19:34 +0300] "GET /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1&response_body=dfghjk HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:22:28 +0300] "GET /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1&response_body=dfghjk HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:23:33 +0300] "GET /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1&response_body=dfghjk HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:25:35 +0300] "GET /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1&response_body=dfghjk HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:26:28 +0300] "GET /api/user-response/set-response HTTP/1.1" 404 7827 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:26:38 +0300] "GET /api/user-response/set-responses HTTP/1.1" 405 236 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:26:49 +0300] "POST /api/user-response/set-responses HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:27:04 +0300] "POST /api/user-response/set-responses HTTP/1.1" 201 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:28:03 +0300] "POST /api/user-response/set-responses HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:28:33 +0300] "POST /api/user-response/set-responses?user_id=1 HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:29:46 +0300] "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:30:14 +0300] "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1" 200 843 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:33:08 +0300] "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1" 200 843 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:38:43 +0300] "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1" 200 843 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:42:10 +0300] "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1" 200 134 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:42:26 +0300] "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1" 200 134 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:42:35 +0300] "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1" 200 13 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:43:59 +0300] "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1" 201 307 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:44:46 +0300] "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1" 201 307 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:46:12 +0300] "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg&user_id=1&user_questionnaire_id=1&question_id=9&response_body=oooooooooooooooooooo HTTP/1.1" 422 104 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:46:40 +0300] "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg&user_id=1&user_questionnaire_id=1&question_id=7&response_body=oooooooooooooooooooo HTTP/1.1" 201 309 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:48:31 +0300] "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dtttttttttttttttttbjfg HTTP/1.1" 201 311 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:49:50 +0300] "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dtttttttttttttttttbjfgghgggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhgggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnndtttttttttttttttttbjfgghgggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhgggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn HTTP/1.1" 422 156 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:51:01 +0300] "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dtttttttttttttttttbjfgghgggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhggggggggggggggggggggggggggggggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhgggggggggggggggghggggggggggggggggggggggg HTTP/1.1" 422 156 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [27/Oct/2021:17:51:11 +0300] "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dtttttttttttttttttbjfgghgggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhggggggggggggggggggggggggggggggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhgggggggggggggggghgggggggggggggggggggggg HTTP/1.1" 201 544 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:09:47:07 +0300] "POST /api/user-response/set-responses HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:09:52:19 +0300] "POST /api/user-response/set-responses HTTP/1.1" 200 15 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:09:52:41 +0300] "POST /api/user-response/set-responses HTTP/1.1" 200 368 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:09:53:14 +0300] "POST /api/user-response/set-responses HTTP/1.1" 200 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:09:53:26 +0300] "POST /api/user-response/set-responses HTTP/1.1" 200 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:09:53:35 +0300] "POST /api/user-response/set-responses HTTP/1.1" 200 368 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:10:16:42 +0300] "POST /api/user-response/create HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:10:21:39 +0300] "POST /api/user-response/create HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:10:26:30 +0300] "POST /api/user-response/create HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:10:28:54 +0300] "POST /api/user-response/create HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:10:30:21 +0300] "POST /api/user-response/create HTTP/1.1" 500 1056 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:10:32:24 +0300] "POST /api/user-response/create HTTP/1.1" 201 16 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:10:33:47 +0300] "POST /api/user-response/create HTTP/1.1" 200 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:10:34:57 +0300] "POST /api/user-response/create HTTP/1.1" 201 185 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:10:35:20 +0300] "POST /api/user-response/create HTTP/1.1" 500 1197 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:10:35:28 +0300] "POST /api/user-response/create HTTP/1.1" 201 12 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:10:36:05 +0300] "POST /api/user-response/create HTTP/1.1" 201 368 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:10:37:22 +0300] "POST /api/user-response/create HTTP/1.1" 201 540 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:10:38:07 +0300] "POST /api/user-response/create HTTP/1.1" 201 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:10:38:26 +0300] "POST /api/user-response/create HTTP/1.1" 201 14 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:10:38:37 +0300] "POST /api/user-response/create HTTP/1.1" 201 540 "-" "PostmanRuntime/7.28.4" +127.0.0.1 - - [28/Oct/2021:10:41:06 +0300] "POST /api/user-response/create HTTP/1.1" 201 540 "-" "PostmanRuntime/7.28.4" diff --git a/frontend-error.log b/frontend-error.log index 9863ff7..396cdd8 100644 --- a/frontend-error.log +++ b/frontend-error.log @@ -175,3 +175,479 @@ Stack trace: 2021/10/25 10:28:23 [error] 784#784: *167 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login" 2021/10/25 10:28:23 [error] 784#784: *167 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login" 2021/10/25 10:28:23 [error] 784#784: *167 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=61765c97b7d67 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/" +2021/10/25 13:42:16 [error] 734#734: *561 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 13:42:16 [error] 734#734: *563 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=61768a08b42ee HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/api" +2021/10/25 13:42:24 [error] 734#734: *561 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/default/index HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 13:42:25 [error] 734#734: *563 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=61768a10f15c6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/api/default/index" +2021/10/25 13:42:28 [error] 734#734: *561 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/default HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 13:42:28 [error] 734#734: *563 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=61768a1461934 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/api/default" +2021/10/25 13:49:12 [error] 734#734: *574 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 13:49:12 [error] 734#734: *574 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=61768ba89de79 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/api" +2021/10/25 13:49:40 [error] 734#734: *574 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 13:49:40 [error] 734#734: *574 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=61768bc403a1f HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/api" +2021/10/25 13:49:53 [error] 734#734: *574 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:02:12 [error] 734#734: *584 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:02:26 [error] 734#734: *586 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:09:55 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:09:55 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=61769082f0d75 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/" +2021/10/25 14:09:58 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /site/index HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/" +2021/10/25 14:09:58 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=617690868e807 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/index" +2021/10/25 14:10:00 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /access/access/index HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/index" +2021/10/25 14:10:00 [error] 734#734: *614 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=617690880c80c HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/access/access/index" +2021/10/25 14:10:04 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /access/access/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/access/access/index" +2021/10/25 14:10:04 [error] 734#734: *614 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=6176908c7a666 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/access/access/create" +2021/10/25 14:10:23 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /access/access/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/access/access/create" +2021/10/25 14:10:29 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /access/access/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/access/access/index" +2021/10/25 14:10:29 [error] 734#734: *618 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=617690a531ed5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/access/access/create" +2021/10/25 14:10:35 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /access/access/index HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/access/access/create" +2021/10/25 14:10:35 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=617690ab734f0 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/access/access/index" +2021/10/25 14:10:36 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /reports/reports/index HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/access/access/index" +2021/10/25 14:10:36 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=617690ac88e21 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index" +2021/10/25 14:11:06 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/logout HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index" +2021/10/25 14:11:06 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index" +2021/10/25 14:11:06 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/reports/reports/index" +2021/10/25 14:11:07 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=617690cae2f2f HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login" +2021/10/25 14:11:09 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /site/signup HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login" +2021/10/25 14:11:09 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=617690ccf2204 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/signup" +2021/10/25 14:11:09 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/signup" +2021/10/25 14:11:09 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=617690cdcc0ef HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login" +2021/10/25 14:11:12 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login" +2021/10/25 14:11:12 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=617690d017cf7 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login" +2021/10/25 14:11:15 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login" +2021/10/25 14:11:15 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=617690d39bf25 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login" +2021/10/25 14:11:24 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /site/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login" +2021/10/25 14:11:24 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/site/login" +2021/10/25 14:11:25 [error] 734#734: *608 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=617690dce43ec HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/" +2021/10/25 14:12:18 [error] 734#734: *644 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:12:18 [error] 734#734: *644 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=6176911200214 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/api/" +2021/10/25 14:12:38 [error] 734#734: *644 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:12:38 [error] 734#734: *644 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=6176912669f39 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/api/" +2021/10/25 14:12:43 [error] 734#734: *649 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:13:12 [error] 734#734: *651 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:13:12 [error] 734#734: *651 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=6176914889912 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/api/skills/" +2021/10/25 14:13:20 [error] 734#734: *654 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:15:23 [error] 734#734: *656 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:16:39 [error] 734#734: *658 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills-on-main-page/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:16:39 [error] 734#734: *660 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=61769217c7183 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/api/skills-on-main-page/" +2021/10/25 14:17:39 [error] 734#734: *660 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:22:21 [error] 734#734: *667 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /card/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:22:21 [error] 734#734: *669 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=6176936d41581 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/card/" +2021/10/25 14:23:08 [error] 734#734: *669 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:23:10 [error] 734#734: *669 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /card/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:23:10 [error] 734#734: *669 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=6176939ed2673 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/card/" +2021/10/25 14:23:33 [error] 734#734: *669 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /card/user-card/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:23:33 [error] 734#734: *669 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=617693b5bda7b HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/card/user-card/" +2021/10/25 14:24:50 [error] 734#734: *676 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /skills/index/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:24:50 [error] 734#734: *676 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=61769401f3375 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/skills/index/" +2021/10/25 14:25:01 [error] 734#734: *676 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /card/skills/index/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:25:02 [error] 734#734: *676 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=6176940deb4e4 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/card/skills/index/" +2021/10/25 14:25:09 [error] 734#734: *676 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /card/skills/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 14:25:09 [error] 734#734: *676 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=6176941503257 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/card/skills/" +2021/10/25 14:25:21 [error] 734#734: *676 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/index/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 15:39:19 [error] 734#734: *743 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/index/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 15:40:20 [error] 734#734: *743 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/skills-on-main-page HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 15:40:28 [error] 734#734: *743 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/skills-on-main-page HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 15:40:51 [error] 734#734: *743 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/skills-on-main-page HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 15:41:41 [error] 734#734: *743 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/reports HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 15:42:21 [error] 734#734: *743 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/reports HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 15:42:39 [error] 734#734: *743 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/reports HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 16:13:12 [error] 734#734: *776 FastCGI sent in stderr: "PHP message: PHP Notice: Trying to get property 'username' of non-object in /var/www/guild.loc/backend/views/layouts/header.php on line 237PHP message: PHP Notice: Trying to get property 'username' of non-object in /var/www/guild.loc/backend/views/layouts/header.php on line 245" while reading response header from upstream, client: 127.0.0.1, server: backend.guild.loc, request: "GET /user-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "backend.guild.loc" +2021/10/25 16:13:44 [error] 734#734: *778 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/skills-onMainPage HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 16:13:56 [error] 734#734: *778 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 16:14:04 [error] 734#734: *778 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /skills/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/25 16:30:47 [error] 734#734: *809 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 10:22:32 [error] 821#821: *2 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/index/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 10:28:56 [error] 821#821: *17 FastCGI sent in stderr: "PHP message: PHP Notice: Trying to get property 'username' of non-object in /var/www/guild.loc/backend/views/layouts/header.php on line 237PHP message: PHP Notice: Trying to get property 'username' of non-object in /var/www/guild.loc/backend/views/layouts/header.php on line 245" while reading response header from upstream, client: 127.0.0.1, server: backend.guild.loc, request: "GET /api/user-questionnaire/json/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "backend.guild.loc" +2021/10/26 10:31:24 [error] 821#821: *27 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/json/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 10:31:24 [error] 821#821: *29 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=6177aecc08415 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/api/skills/json/" +2021/10/26 10:31:28 [error] 821#821: *31 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/index/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 10:31:35 [error] 821#821: *31 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/json/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 10:31:35 [error] 821#821: *31 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=6177aed721139 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/api/skills/json/" +2021/10/26 10:31:37 [error] 821#821: *31 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/index/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 10:47:03 [error] 821#821: *51 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/index/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 10:47:14 [error] 821#821: *51 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 10:47:14 [error] 821#821: *54 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=6177b282bb0a1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/" +2021/10/26 11:00:05 [error] 821#821: *102 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/index/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 11:00:32 [error] 821#821: *102 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/H1XmxcupZqYwq66OXwNnv54AZ9nD7r7R/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 11:00:32 [error] 821#821: *102 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=6177b5a03b3d9 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/api/skills/H1XmxcupZqYwq66OXwNnv54AZ9nD7r7R/" +2021/10/26 11:00:35 [error] 821#821: *102 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/index/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 11:04:43 [error] 821#821: *107 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 11:05:47 [error] 821#821: *107 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 11:06:10 [error] 821#821: *107 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 90PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 91" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 11:20:02 [error] 821#821: *111 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 11:22:29 [error] 821#821: *113 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 11:30:03 [error] 821#821: *115 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/skills HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 11:43:02 [error] 821#821: *157 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/index/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 12:37:14 [error] 821#821: *178 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/skills HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 12:37:22 [error] 821#821: *178 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/profile HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 15:56:42 [error] 821#821: *207 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/index/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 15:56:48 [error] 821#821: *207 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 15:56:48 [error] 821#821: *211 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /debug/default/toolbar?tag=6177fb1018105 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc", referrer: "http://guild.loc/api/user/" +2021/10/26 15:57:18 [error] 821#821: *207 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user/login/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 16:04:48 [error] 821#821: *214 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user/login/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 16:47:04 [error] 821#821: *219 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 16:47:35 [error] 821#821: *219 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user/login_form HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 16:47:46 [error] 821#821: *219 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user/login-form HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 16:48:03 [error] 821#821: *219 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user/login HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 16:50:14 [error] 821#821: *224 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user/login?login=testUser HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 16:52:42 [error] 821#821: *226 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user/login?login=testUser HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 16:52:55 [error] 821#821: *226 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user/login?login=testUser HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 16:54:06 [error] 821#821: *229 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user/login?login=testUser HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 16:55:40 [error] 821#821: *231 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user/login?login=testUser HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 16:55:59 [error] 821#821: *231 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user/login?login=testUser HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 16:56:12 [error] 821#821: *231 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user/login?login=testUser HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 17:06:27 [error] 821#821: *235 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/skills/skills-on-main-page HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 17:10:05 [error] 821#821: *237 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/skills/skills-on-main-page?token=wU_fP1BWuA2e1kmJua7aa_sdoPjNuUwf HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 17:12:04 [error] 821#821: *239 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/skills/skills-on-main-page HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 17:12:36 [error] 821#821: *239 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/skills/skills-on-main-page HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 17:14:08 [error] 821#821: *242 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user/login?login=testUser HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 17:18:13 [error] 821#821: *244 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/skills-on-main-page HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 17:18:42 [error] 821#821: *244 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/skills-on-main-page HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/26 22:25:33 [error] 764#764: *1 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/skills-on-main-page HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 09:51:24 [error] 732#732: *14 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user/login/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:03:25 [error] 732#732: *21 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:03:55 [error] 732#732: *21 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:04:20 [error] 732#732: *21 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 91PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 92" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:08:06 [error] 732#732: *25 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:08:20 [error] 732#732: *25 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:08:45 [error] 732#732: *25 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:11:53 [error] 732#732: *29 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:21:55 [error] 732#732: *31 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:30:17 [error] 732#732: *33 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/verbs HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:35:07 [error] 732#732: *35 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/verbs HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:35:19 [error] 732#732: *35 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:35:24 [error] 732#732: *35 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:35:37 [error] 732#732: *35 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "PATCH /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:36:38 [error] 732#732: *35 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:44:11 [error] 732#732: *41 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:46:27 [error] 732#732: *43 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:46:32 [error] 732#732: *43 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:47:12 [error] 732#732: *43 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:47:24 [error] 732#732: *43 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:48:40 [error] 732#732: *48 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:49:00 [error] 732#732: *48 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:49:13 [error] 732#732: *48 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:49:20 [error] 732#732: *48 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:49:25 [error] 732#732: *48 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:49:54 [error] 732#732: *48 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:50:03 [error] 732#732: *48 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:50:15 [error] 732#732: *48 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:56:13 [error] 732#732: *57 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:56:40 [error] 732#732: *57 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 10:56:56 [error] 732#732: *57 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?fdgfgf=4444 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:02:14 [error] 732#732: *61 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=4444 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:02:42 [error] 732#732: *61 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:02:58 [error] 732#732: *61 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:03:22 [error] 732#732: *61 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:03:27 [error] 732#732: *61 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=100 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:04:18 [error] 732#732: *61 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=100 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:04:30 [error] 732#732: *61 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:07:29 [error] 732#732: *69 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:09:41 [error] 732#732: *71 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:10:08 [error] 732#732: *71 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:12:27 [error] 732#732: *90 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:12:43 [error] 732#732: *90 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:13:19 [error] 732#732: *90 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:14:05 [error] 732#732: *90 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:14:52 [error] 732#732: *90 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:15:17 [error] 732#732: *90 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:15:42 [error] 732#732: *90 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:30:44 [error] 732#732: *101 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:31:05 [error] 732#732: *101 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:32:46 [error] 732#732: *104 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:34:35 [error] 732#732: *106 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:34:48 [error] 732#732: *106 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:35:05 [error] 732#732: *106 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:43:18 [error] 732#732: *110 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:46:37 [error] 732#732: *112 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:51:14 [error] 732#732: *114 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:51:46 [error] 732#732: *114 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:52:18 [error] 732#732: *114 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:52:43 [error] 732#732: *114 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:53:22 [error] 732#732: *114 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:56:40 [error] 732#732: *120 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:56:48 [error] 732#732: *120 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:56:51 [error] 732#732: *120 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:58:37 [error] 732#732: *124 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:58:46 [error] 732#732: *124 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:58:51 [error] 732#732: *124 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:58:58 [error] 732#732: *124 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:59:02 [error] 732#732: *124 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:59:06 [error] 732#732: *124 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:59:21 [error] 732#732: *124 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:59:31 [error] 732#732: *124 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 11:59:36 [error] 732#732: *124 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:00:15 [error] 732#732: *124 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:00:26 [error] 732#732: *124 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:01:56 [error] 732#732: *136 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:02:56 [error] 732#732: *136 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:03:36 [error] 732#732: *136 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:06:29 [error] 732#732: *140 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:06:48 [error] 732#732: *140 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:07:03 [error] 732#732: *140 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:09:17 [error] 732#732: *144 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:09:34 [error] 732#732: *144 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:10:07 [error] 732#732: *144 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:12:07 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:12:16 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:12:19 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:12:33 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:12:43 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:12:56 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=hhjdbhd&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:13:14 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:13:19 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=556&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:13:21 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=556&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:13:43 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=556&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:13:55 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=556&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:14:19 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=556&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:14:26 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=556&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:14:51 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=556&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:15:02 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=556&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:15:07 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=5&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:15:49 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=5&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:16:00 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=5&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:16:04 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=5f&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:16:11 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=5.2&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:16:19 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=gfmklfggf&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:16:27 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=4344r&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:16:30 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=4344&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:16:51 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=4344&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:16:59 [error] 732#732: *148 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=4344&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:18:23 [error] 732#732: *174 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=4344&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:18:45 [error] 732#732: *174 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=4344&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:18:51 [error] 732#732: *174 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=4344&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:18:56 [error] 732#732: *174 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=4344&status=2 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:19:00 [error] 732#732: *174 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=4344&status=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:19:15 [error] 732#732: *174 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=4 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:19:20 [error] 732#732: *174 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:19:47 [error] 732#732: *174 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=fbfg HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:20:04 [error] 732#732: *174 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:23:02 [error] 732#732: *194 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:23:14 [error] 732#732: *194 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "PUT /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:30:01 [error] 732#732: *197 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "PUT /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:30:06 [error] 732#732: *197 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:30:17 [error] 732#732: *197 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:41:16 [error] 732#732: *201 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires?$questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:41:25 [error] 732#732: *201 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires?$questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:42:30 [error] 732#732: *204 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:42:46 [error] 732#732: *204 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:43:00 [error] 732#732: *204 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:43:10 [error] 732#732: *204 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:43:12 [error] 732#732: *204 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:43:56 [error] 732#732: *204 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:44:28 [error] 732#732: *204 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:44:30 [error] 732#732: *204 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:44:58 [error] 732#732: *204 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:45:23 [error] 732#732: *204 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:49:59 [error] 732#732: *215 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:50:13 [error] 732#732: *215 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:56:36 [error] 732#732: *218 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:56:52 [error] 732#732: *218 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:57:23 [error] 732#732: *218 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:57:29 [error] 732#732: *218 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:57:54 [error] 732#732: *218 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 12:58:36 [error] 732#732: *218 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:00:20 [error] 732#732: *225 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:00:56 [error] 732#732: *225 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:03:54 [error] 732#732: *228 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:04:12 [error] 732#732: *228 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:04:39 [error] 732#732: *228 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:25:20 [error] 732#732: *232 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:25:27 [error] 732#732: *232 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:27:58 [error] 732#732: *235 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:28:29 [error] 732#732: *235 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:30:22 [error] 732#732: *238 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:32:12 [error] 732#732: *240 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:32:37 [error] 732#732: *240 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:33:38 [error] 732#732: *240 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:34:42 [error] 732#732: *240 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:35:36 [error] 732#732: *240 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:36:17 [error] 732#732: *240 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:37:32 [error] 732#732: *253 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:38:33 [error] 732#732: *253 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:39:08 [error] 732#732: *253 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:39:34 [error] 732#732: *253 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:41:23 [error] 732#732: *258 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:41:35 [error] 732#732: *258 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:42:18 [error] 732#732: *258 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:42:30 [error] 732#732: *258 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:43:31 [error] 732#732: *258 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:44:40 [error] 732#732: *264 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:45:19 [error] 732#732: *264 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:49:54 [error] 732#732: *267 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:50:16 [error] 732#732: *267 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:52:00 [error] 732#732: *270 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:52:19 [error] 732#732: *270 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:58:01 [error] 732#732: *273 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:58:29 [error] 732#732: *273 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:58:40 [error] 732#732: *273 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 13:58:50 [error] 732#732: *273 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:00:06 [error] 732#732: *278 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:03:07 [error] 732#732: *280 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:03:25 [error] 732#732: *280 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:03:31 [error] 732#732: *280 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:03:43 [error] 732#732: *280 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:05:50 [error] 732#732: *285 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:08:39 [error] 732#732: *287 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:09:32 [error] 732#732: *287 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:10:23 [error] 732#732: *287 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:14:57 [error] 732#732: *295 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:15:37 [error] 732#732: *295 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:16:06 [error] 732#732: *295 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:16:19 [error] 732#732: *295 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:16:24 [error] 732#732: *295 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:16:50 [error] 732#732: *295 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:18:21 [error] 732#732: *302 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:20:16 [error] 732#732: *304 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:21:42 [error] 732#732: *306 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:21:50 [error] 732#732: *306 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:21:55 [error] 732#732: *306 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:27:14 [error] 732#732: *310 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:29:23 [error] 732#732: *312 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:29:41 [error] 732#732: *312 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=2 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:29:56 [error] 732#732: *312 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=3 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:30:23 [error] 732#732: *312 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=3 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:30:30 [error] 732#732: *312 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=2 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:30:34 [error] 732#732: *312 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:35:48 [error] 732#732: *320 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:37:43 [error] 732#732: *340 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:38:59 [error] 732#732: *342 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:39:14 [error] 732#732: *342 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:39:58 [error] 732#732: *342 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:40:07 [error] 732#732: *342 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:40:43 [error] 732#732: *342 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:40:58 [error] 732#732: *342 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:41:43 [error] 732#732: *342 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:42:01 [error] 732#732: *342 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:42:54 [error] 732#732: *342 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:43:08 [error] 732#732: *342 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:44:08 [error] 732#732: *342 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:45:20 [error] 732#732: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/skills/skills-on-main-page HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:45:29 [error] 732#732: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user/login?login=testUser HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:45:45 [error] 732#732: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-questionnaire/questionnaires-list?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:45:49 [error] 732#732: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:45:55 [error] 732#732: *357 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:57:32 [error] 732#732: *366 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 14:57:42 [error] 732#732: *366 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:00:15 [error] 732#732: *369 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:01:11 [error] 732#732: *369 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:01:31 [error] 732#732: *369 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:01:50 [error] 732#732: *369 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:01:53 [error] 732#732: *369 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:01:55 [error] 732#732: *369 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:01:56 [error] 732#732: *369 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:01:57 [error] 732#732: *369 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:02:08 [error] 732#732: *369 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:02:23 [error] 732#732: *369 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:04:59 [error] 732#732: *380 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:05:10 [error] 732#732: *380 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:06:21 [error] 732#732: *392 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:08:16 [error] 732#732: *394 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:08:34 [error] 732#732: *394 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=hh HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:08:41 [error] 732#732: *394 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=10 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:30:18 [error] 720#720: *6 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user/login/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:36:54 [error] 720#720: *22 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=10 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:37:20 [error] 720#720: *22 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=10 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:37:27 [error] 720#720: *22 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/questionnaire/get-questionnaire?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:54:30 [error] 720#720: *44 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/question/get-questions?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:58:33 [error] 720#720: *46 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/question/get-questions?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 15:59:06 [error] 720#720: *46 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/question/get-questions?questionnaire_id=10 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:00:23 [error] 720#720: *49 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/question/get-questions?questionnaire_id=10 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:00:48 [error] 720#720: *49 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/question/get-questions?questionnaire_id=10 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:00:55 [error] 720#720: *49 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/question/get-questions?questionnaire_id=2 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:00:59 [error] 720#720: *49 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/question/get-questions?questionnaire_id=dfsdfsd HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:01:05 [error] 720#720: *49 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/question/get-questions?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:01:19 [error] 720#720: *49 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/question/get-questions?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:01:57 [error] 720#720: *49 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/question/get-questions?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:03:17 [error] 720#720: *57 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/question/get-questions?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:16:30 [error] 720#720: *65 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/question/get-questions?questionnaire_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:17:15 [error] 720#720: *65 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/answer/get-answers?question_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:17:53 [error] 720#720: *65 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/answer/get-answers?question_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:18:09 [error] 720#720: *65 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/answer/get-answers?question_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:20:49 [error] 720#720: *70 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/answer/get-answers?question_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:21:10 [error] 720#720: *70 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/answer/get-answers?question_id=3 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:21:16 [error] 720#720: *70 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/answer/get-answers?question_id=4 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:24:31 [error] 720#720: *74 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/answer/get-answers?question_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:25:26 [error] 720#720: *74 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/answer/get-answers?question_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:25:35 [error] 720#720: *74 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/answer/get-answers?question_id=6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:25:44 [error] 720#720: *74 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/answer/get-answers?question_id=5 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:26:52 [error] 720#720: *96 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/answer/get-answers?question_id=6 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:26:57 [error] 720#720: *96 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/answer/get-answers?question_id=7 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:53:54 [error] 720#720: *106 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/set-response HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:54:17 [error] 720#720: *106 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/set-response HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:55:32 [error] 720#720: *109 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/set-responses HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:56:34 [error] 720#720: *109 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/set-responses HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:56:49 [error] 720#720: *109 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:56:53 [error] 720#720: *109 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/set-responses HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 16:58:07 [error] 720#720: *115 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/actions HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:07:55 [error] 720#720: *117 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/actions?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:08:12 [error] 720#720: *117 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:08:56 [error] 720#720: *117 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:08:58 [error] 720#720: *117 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:09:10 [error] 720#720: *117 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:09:12 [error] 720#720: *117 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:09:26 [error] 720#720: *117 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:09:31 [error] 720#720: *117 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:10:43 [error] 720#720: *126 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:10:49 [error] 720#720: *126 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:11:03 [error] 720#720: *126 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:11:31 [error] 720#720: *126 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:11:34 [error] 720#720: *126 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:11:47 [error] 720#720: *126 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:11:54 [error] 720#720: *126 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/createdd HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:12:06 [error] 720#720: *126 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:13:16 [error] 720#720: *135 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:13:22 [error] 720#720: *135 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/answer/get-answers?question_id=7 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:14:33 [error] 720#720: *138 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:14:36 [error] 720#720: *138 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:15:54 [error] 720#720: *141 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:15:58 [error] 720#720: *141 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:16:16 [error] 720#720: *141 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:16:20 [error] 720#720: *141 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:19:34 [error] 720#720: *161 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1&response_body=dfghjk HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:22:28 [error] 720#720: *164 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1&response_body=dfghjk HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:23:33 [error] 720#720: *166 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1&response_body=dfghjk HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:25:35 [error] 720#720: *168 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/create?user_id=1&question_id=7&user_questionnaire=1&response_body=dfghjk HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:26:28 [error] 720#720: *168 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/set-response HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:26:38 [error] 720#720: *168 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "GET /api/user-response/set-responses HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:26:49 [error] 720#720: *168 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:27:04 [error] 720#720: *168 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:28:03 [error] 720#720: *168 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:28:33 [error] 720#720: *168 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses?user_id=1 HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:29:46 [error] 720#720: *176 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:30:14 [error] 720#720: *176 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:33:08 [error] 720#720: *179 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:38:43 [error] 720#720: *181 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:42:10 [error] 720#720: *183 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:42:26 [error] 720#720: *183 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:42:35 [error] 720#720: *183 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:43:59 [error] 720#720: *187 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:44:46 [error] 720#720: *187 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:46:12 [error] 720#720: *190 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg&user_id=1&user_questionnaire_id=1&question_id=9&response_body=oooooooooooooooooooo HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:46:40 [error] 720#720: *190 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dgjfdnvjkdfnjnbjfg&user_id=1&user_questionnaire_id=1&question_id=7&response_body=oooooooooooooooooooo HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:48:31 [error] 720#720: *193 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dtttttttttttttttttbjfg HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:49:50 [error] 720#720: *195 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dtttttttttttttttttbjfgghgggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhgggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnndtttttttttttttttttbjfgghgggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhgggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:51:01 [error] 720#720: *197 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dtttttttttttttttttbjfgghgggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhggggggggggggggggggggggggggggggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhgggggggggggggggghggggggggggggggggggggggg HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/27 17:51:11 [error] 720#720: *197 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses?user_id=1&user_questionnaire_id=1&question_id=7&response_body=dtttttttttttttttttbjfgghgggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhggggggggggggggggggggggggggggggggggggggggggggghhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhgggggggggggggggghgggggggggggggggggggggg HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 09:47:07 [error] 728#728: *1 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 09:52:19 [error] 728#728: *3 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 09:52:41 [error] 728#728: *3 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 09:53:14 [error] 728#728: *3 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 09:53:26 [error] 728#728: *3 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 09:53:35 [error] 728#728: *3 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/set-responses HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 10:16:42 [error] 728#728: *9 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 10:21:39 [error] 728#728: *11 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 10:26:30 [error] 728#728: *13 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 10:28:54 [error] 728#728: *15 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 10:30:21 [error] 728#728: *17 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 10:32:24 [error] 728#728: *19 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 10:33:47 [error] 728#728: *21 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 10:34:57 [error] 728#728: *23 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 10:35:20 [error] 728#728: *23 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 10:35:28 [error] 728#728: *23 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 10:36:05 [error] 728#728: *23 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 10:37:22 [error] 728#728: *28 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 10:38:07 [error] 728#728: *28 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 10:38:26 [error] 728#728: *28 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 10:38:37 [error] 728#728: *28 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" +2021/10/28 10:41:06 [error] 728#728: *33 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined index: telegramBotToken in /var/www/guild.loc/frontend/config/main.php on line 101PHP message: PHP Notice: Undefined index: telegramBotChatId in /var/www/guild.loc/frontend/config/main.php on line 102" while reading response header from upstream, client: 127.0.0.1, server: guild.loc, request: "POST /api/user-response/create HTTP/1.1", upstream: "fastcgi://unix:/run/php/php-fpm.sock:", host: "guild.loc" diff --git a/frontend/config/main.php b/frontend/config/main.php index db85f85..5cbe40f 100755 --- a/frontend/config/main.php +++ b/frontend/config/main.php @@ -38,16 +38,28 @@ return [ ], 'components' => [ + 'response' => [ + 'formatters' => [ + 'json' => [ + 'class' => 'yii\web\JsonResponseFormatter', + 'prettyPrint' => YII_DEBUG, + 'encodeOptions' => JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE, + ], + ], + ], + 'request' => [ 'csrfParam' => '_csrf-frontend', 'baseUrl' => '', 'parsers' => [ 'application/json' => 'yii\web\JsonParser', + 'application/xml' => 'yii\web\XmlParser', ], ], 'user' => [ 'identityClass' => 'common\models\User', 'enableAutoLogin' => true, + 'identityCookie' => ['name' => '_identity-frontend', 'httpOnly' => true], ], 'session' => [ @@ -66,7 +78,6 @@ return [ 'errorHandler' => [ 'errorAction' => 'site/error', ], - 'urlManager' => [ 'enablePrettyUrl' => true, 'showScriptName' => false,