~ubuntu-branches/ubuntu/saucy/nginx/saucy-updates

« back to all changes in this revision

Viewing changes to src/http/modules/ngx_http_scgi_module.c

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry, Cyril Lavier, Michael Lustfield, Kartik Mistry
  • Date: 2012-05-14 11:15:00 UTC
  • mfrom: (4.2.49 sid)
  • Revision ID: package-import@ubuntu.com-20120514111500-1y9ij7zulu9xnmry
Tags: 1.2.0-1
[Cyril Lavier]
* New upstream release. (Closes: #670306)
  + 1.2.x is stable release now.
* debian/modules/chunkin-nginx-module:
  + Updated chunkin-nginx-module to v0.23rc2-3-g85eca98.
* debian/modules/headers-more-module:
  + Updated headers-more-module to v0.17rc1-4-g33a82ed.
* debian/modules/nginx-development-kit:
  + Updated nginx-development-kit to v0.2.17-7-g24202b4.
* debian/modules/nginx-echo:
  + Updated nginx-echo to v0.38rc2-7-g080c0a1.
* debian/modules/nginx-lua:
  + Updated nginx-lua to v0.5.0rc25-5-g8d28785.
* debian/modules/nginx-upstream-fair:
  + Updated nginx-upstream-fair to a18b409.
* debian/modules/nginx-upload-progress:
  + Updated nginx-upload-progress to v0.9.0-0-ga788dea.
* debian/modules/naxsi:
  + Updated naxsi to 0.46
* debian/modules/README.Modules-versions:
  + Updated versions and URLs for modules.
* debian/naxsi-ui-extract, debian/naxsi-ui-intercept,
  debian/nginx-naxsi-ui.*, debian/naxsi-ui-extract.1,
  debian/naxsi-ui-intercept.1, debian/rules:
  + Added nginx-naxsi-ui package containing the learning daemon
    and the WebUI.
* debian/nginx-common.nginx.default, debian/nginx-common.nginx.init:
  + Renamed files to be compliant with the nginx-naxsi-ui package.
* debian/po:
  + Added needed files for using po-debconf.
  + Added French translation.
* debian/control:
  + Applied the modifications given after the review by Justin Rye.

[Michael Lustfield]
* debian/conf/uwsgi_params:
  + Added UWSGI_SCHEME to uwsgi_params. (Closes: #664878)
* debian/conf/sites-available/default:
  + Added allow directive for ipv6 localhost. (Closes: #664271)

[Kartik Mistry]
* debian/control:
  + wrap-and-sort.
* debian/copyright:
  + Added missing copyrights, minor formatting fixes.
* debian/nginx-common.nginx.init:
  + Added ulimit for restarts, Thanks to Daniel Roschka
    <danielroschka@phoenitydawn.de> for patch. (Closes: #673580)
* debian/conf/sites-available/default:
  + Added patch to fix deprecated "listen" directive, Thanks to
    Guillaume Plessis <gui@dotdeb.org> for patch. (Closes: #672632)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1173
1173
 
1174
1174
    if (conf->upstream.busy_buffers_size < size) {
1175
1175
        ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1176
 
            "\"scgi_busy_buffers_size\" must be equal or bigger "
1177
 
            "than maximum of the value of \"scgi_buffer_size\" and "
 
1176
            "\"scgi_busy_buffers_size\" must be equal to or greater "
 
1177
            "than the maximum of the value of \"scgi_buffer_size\" and "
1178
1178
            "one of the \"scgi_buffers\"");
1179
1179
 
1180
1180
        return NGX_CONF_ERROR;
1204
1204
 
1205
1205
    if (conf->upstream.temp_file_write_size < size) {
1206
1206
        ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1207
 
            "\"scgi_temp_file_write_size\" must be equal or bigger than "
1208
 
            "maximum of the value of \"scgi_buffer_size\" and "
 
1207
            "\"scgi_temp_file_write_size\" must be equal to or greater than "
 
1208
            "the maximum of the value of \"scgi_buffer_size\" and "
1209
1209
            "one of the \"scgi_buffers\"");
1210
1210
 
1211
1211
        return NGX_CONF_ERROR;
1227
1227
        && conf->upstream.max_temp_file_size < size) {
1228
1228
        ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1229
1229
            "\"scgi_max_temp_file_size\" must be equal to zero to disable "
1230
 
            "the temporary files usage or must be equal or bigger than "
1231
 
            "maximum of the value of \"scgi_buffer_size\" and "
 
1230
            "temporary files usage or must be equal to or greater than "
 
1231
            "the maximum of the value of \"scgi_buffer_size\" and "
1232
1232
            "one of the \"scgi_buffers\"");
1233
1233
 
1234
1234
        return NGX_CONF_ERROR;