美文网首页
docker 容器内yii2使用gii工具 403错误解决方案

docker 容器内yii2使用gii工具 403错误解决方案

作者: 小轩_e111 | 来源:发表于2019-01-15 10:18 被阅读0次

    docker 容器内yii2使用gii工具

    Forbidden (#403)

    You are not allowed to access this page.

    需要再配置文件中配置一下信息方可解决

    $config['modules']['gii'] = [

        'class' => 'yii\gii\Module',

        'allowedIPs' => ['127.0.0.1','::1','172.17.0.*'],

        'generators' => [

            'crud' => [

                'class' => yii\gii\generators\crud\Generator::className(),

                'templates' => [

                    'default' => '@vendor/yiisoft/yii2-gii/src/generators/crud/default',

                    'rageframe' => '@backend/components/gii/crud/default',

                ]

    ]

        ],

    ];

    相关文章

      网友评论

          本文标题:docker 容器内yii2使用gii工具 403错误解决方案

          本文链接:https://www.haomeiwen.com/subject/vmhlaxtx.html