Nginx variables similar to SetEnv in Apache?

前端 未结 4 1958
遥遥无期
遥遥无期 2020-11-27 13:59

I use SetEnv in Apache to set some variables in virtualhosts that I recover in PHP using $_SERVER[the_variable].

Now I am switching to Perl Catalyst and

4条回答
  •  遥遥无期
    2020-11-27 14:20

    location / {
    ...
       fastcgi_param   APPLICATION_ENV  production;
       fastcgi_param   APPLICATION_CONFIG user;
    ...
    }
    

    but it's for PHP-CGI

提交回复
热议问题