Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Web プロファイラーを使用して symfony をデバッグしようとしていますが、デバッグ対象を制御するパネルが変更されません。なんらかの理由で、リクエスト パネルにしか表示されませんが、エンティティ デバッガー パネルを確認する必要があります。これを機能させるにはどうすればよいですか? また、どのファイルを確認すればよいですか?
nginx + php-fpm を使用してこの問題を発見しました。同じ構成を使用している場合は、nginx.conf の最後の try_files 行に $args を追加することで解決できます。
# ... location / { try_files $uri /app_dev.php?$args }