nefone
Новичок
Разрабатываю Yii2 приложение в Docker контейнере, но при попытке запуска Gii вылетает ошибка 403.
Пока в моем конфиге:
Не расскоментирую строчку allowedIPs со значением ['*']
Тогда Gii запускается, но не знаю насколько такой подход безопасный?
Пока в моем конфиге:
PHP:
if (YII_ENV_DEV) {
// configuration adjustments for 'dev' environment
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = [
'class' => 'yii\debug\Module',
// uncomment the following to add your IP if you are not connecting from localhost.
//'allowedIPs' => ['127.0.0.1', '::1'],
];
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
// uncomment the following to add your IP if you are not connecting from localhost.
//'allowedIPs' => ['127.0.0.1', '::1'],
];
}
PHP:
'allowedIPs' => ['*']