~britco/nginx/master

« back to all changes in this revision

Viewing changes to auto/sources

  • Committer: Bazaar Package Importer
  • Author(s): Kartik Mistry, Kartik Mistry, Michael Lustfield
  • Date: 2010-11-27 21:04:02 UTC
  • mfrom: (1.3.8 upstream)
  • mto: This revision was merged to the branch mainline in revision 36.
  • Revision ID: james.westby@ubuntu.com-20101127210402-14sgjpe6r3jup8a9
Tags: 0.8.53-1
[Kartik Mistry]
* debian/control:
  + Added Michael Lustfield as co-maintainer
* nginx.conf:
  + No need to use regex in gzip_disable for msie6, Thanks to António P. P.
    Almeida <appa@perusio.net> (Closes: #592147)
* conf/sites-available/default:
  + Fixed typo for "include fastcgi", Thanks to Mostafa Ghadamyari
    <nginx@gigfa.com> (Closes: #593142, #593143)
* debian/patches/fix_reloading_ipv6.diff:
  + Removed, merged upstream
* debian/init.d:
  + Added fix to control nginx by user in a simple way by setting DAEMON
    variable to an invalid name in /etc/default/nginx. Patch by Toni Mueller
    <support@oeko.net> (Closes: #594598)
* debian/NEWS.Debian:
  + Updated news for 0.8.x as stable branch

[Michael Lustfield]
* New upstream release (Closes: #602970)
  + 0.8.x branch is declared stable by upstream now
* Add a UFW profile set:
  + debian/nginx.ufw.profile: Added.
  + debian/control: nginx: Suggests ufw.
  + debian/dirs: Add 'etc/ufw/applications.d'
  + debian/rules: Add install rule for the nginx UFW profile.
* Moved debian/dirs to debian/nginx.dirs
* Added types_hash_max_size to nginx.conf
* Install simple default index.html file (Closes: #581416)
  + debian/dirs: Add 'usr/share/nginx/www'.
  + debian/nginx.install: Add 'html/* usr/share/nginx/www'.
* debian/patches/nginx-echo.diff:
  + Added Echo module
* Added files for nginx.docs
  - /usr/share/doc/nginx/
    + debian/help/docs/fcgiwrap
    + debian/help/docs/php
    + debian/help/docs/support-irc
    + debian/help/docs/upstream
* Added files for nginx.examples
  - /usr/share/doc/nginx/examples/
    + debian/help/docs/drupal
    + debian/help/docs/http
    + debian/help/docs/mail
    + debian/help/docs/mailman
    + debian/help/docs/nginx.conf
    + debian/help/docs/virtual_hosts
    + debian/help/docs/wordpress
* debian/conf/:
  + Removed excess spaces
  + Added tabs where appropriate
  + Added SCRIPT_FILENAME to fastcgi_params

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
          src/os/unix/ngx_aio_read_chain.c \
126
126
          src/os/unix/ngx_aio_write_chain.c"
127
127
 
 
128
FILE_AIO_SRCS="src/os/unix/ngx_file_aio_read.c"
 
129
LINUX_AIO_SRCS="src/os/unix/ngx_linux_aio_read.c"
128
130
 
129
131
UNIX_INCS="$CORE_INCS $EVENT_INCS src/os/unix"
130
132
 
385
387
HTTP_MAP_SRCS=src/http/modules/ngx_http_map_module.c
386
388
 
387
389
 
 
390
HTTP_SPLIT_CLIENTS_MODULE=ngx_http_split_clients_module
 
391
HTTP_SPLIT_CLIENTS_SRCS=src/http/modules/ngx_http_split_clients_module.c
 
392
 
 
393
 
388
394
HTTP_REFERER_MODULE=ngx_http_referer_module
389
395
HTTP_REFERER_SRCS=src/http/modules/ngx_http_referer_module.c
390
396
 
406
412
HTTP_FASTCGI_SRCS=src/http/modules/ngx_http_fastcgi_module.c
407
413
 
408
414
 
 
415
HTTP_UWSGI_MODULE=ngx_http_uwsgi_module
 
416
HTTP_UWSGI_SRCS=src/http/modules/ngx_http_uwsgi_module.c
 
417
 
 
418
 
 
419
HTTP_SCGI_MODULE=ngx_http_scgi_module
 
420
HTTP_SCGI_SRCS=src/http/modules/ngx_http_scgi_module.c
 
421
 
 
422
 
409
423
HTTP_PERL_MODULE=ngx_http_perl_module
410
424
HTTP_PERL_INCS=src/http/modules/perl
411
425
HTTP_PERL_DEPS=src/http/modules/perl/ngx_http_perl_module.h
436
450
HTTP_SECURE_LINK_SRCS=src/http/modules/ngx_http_secure_link_module.c
437
451
 
438
452
 
 
453
HTTP_DEGRADATION_MODULE=ngx_http_degradation_module
 
454
HTTP_DEGRADATION_SRCS=src/http/modules/ngx_http_degradation_module.c
 
455
 
 
456
 
439
457
HTTP_FLV_MODULE=ngx_http_flv_module
440
458
HTTP_FLV_SRCS=src/http/modules/ngx_http_flv_module.c
441
459