dongnaigu2052 2013-10-02 05:10
浏览 52

编辑Suhosin配置参数

We have an Amazon EC2 instance running Ubuntu LEMP installation (nginx). We would like to modify several suhosin config parameters. We tried changing the parameters in /etc/php5/cgi/conf.d/suhosin.ini file, but it won't change the values. Upon loading phpinfo function, we still see the old default values. We also added the parameters into /etc/php5/cgi/php.ini file (which is the file parsed by the nginx web server) to no avail.

nginx was restarted each time after making the above changes and php-fpm was also restarted. However, we cannot change the default values of any of the suhosin parameters.

Which file needs to be edited here?

  • 写回答

1条回答 默认 最新

  • douchui7332 2014-08-11 10:54
    关注

    phpinfo() lists directories for .ini files, e.g.:

    Scan this dir for additional .ini files => /foo/bar
    Additional .ini files parsed => /foo/bar/php.ini
    

    Any of these ini files or a new ini file in the scan path may be used to set suhosin options.

    Note: Later occurrence of the same option has precedence.

    评论

报告相同问题?