facebook twitter hatena line email

Php/Symfony/Symfony2/開発環境に外部からアクセス

提供: 初心者エンジニアの簡易メモ
2017年1月17日 (火) 12:45時点におけるAdmin (トーク | 投稿記録)による版

移動: 案内検索

localhost以外からapp_devへアクセスすると以下エラーが出る

You are not allowed to access this file. Check app_dev.php for more information.

対応方法としては以下ファイルの配列に許可ipを加える

-app_dev.php

-    || !in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1'))
+  || !in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1', '192.168.xxx.xxx'))