码迷,mamicode.com
首页 > 其他好文 > 详细

通过nginx的fastcgi_param来设置环境变量

时间:2017-09-01 22:20:13      阅读:462      评论:0      收藏:0      [点我收藏+]

标签:stc   roo   tool   runtime   try   class   信息   ams   重启nginx   

在nginx配置文件中,可以在nginx总体的配置文件nginx.conf中,也可以在单独的网站配置环境中进行设置,如:www.tomener.com.conf

在配置环境server段location中添加相应的配置信息:

location ~ \.php($|/) {
    try_files         $uri =404;
    fastcgi_pass      unix:/tmp/php-cgi.sock;
    fastcgi_index     index.php;
    include           fastcgi_params;
    fastcgi_param     SCRIPT_FILENAME  $document_root$fastcgi_script_name;
    fastcgi_param     RUNTIME_ENVIROMENT ‘PRO‘; # PRO or DEV
}

这里只添加了fastcgi_param RUNTIME_ENVIROMENT ‘PRO‘一个值,更多可以添加在后面

然后重启重启nginx

 
nginx -s reload

通过nginx的fastcgi_param来设置环境变量

标签:stc   roo   tool   runtime   try   class   信息   ams   重启nginx   

原文地址:http://www.cnblogs.com/gantoday/p/7465097.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!