~britco/nginx/master

« back to all changes in this revision

Viewing changes to debian/nginx.logrotate

  • Committer: Bazaar Package Importer
  • Author(s): Kartik Mistry, Kartik Mistry, Michael Lustfield
  • Date: 2010-12-06 11:26:22 UTC
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: james.westby@ubuntu.com-20101206112622-yw4u7rh6vprgn57t
[Kartik Mistry]
* debian/conf/mime.types:
  + Added html5 codecs support (Closes: #605212)
* debian/conf/fastcgi_params:
  + Fixed typo (Closes: #605582)

[Michael Lustfield]
* debian/conf/nginx.conf:
  + Reduced worker_connections to 768 (Closes: #605529)
* Add an nginx site management script to nginx-doc. (Closes: #593580)
  + debian/help/examples/nginx_modsite: Added.
* debian/nginx.logrotate:
  + Added prerotate chunk for awstats. (Closes: #590098)
* debian/copyright:
  + Added Michael Lustfield
* Created nginx-doc:
  + Added 'Package: nginx-doc' section to debian/control
  + Moved debian/nginx.examples -> debian/nginx-doc.examples
  + Moved debian/nginx.docs -> debian/nginx-doc.docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
        notifempty
8
8
        create 640 root adm
9
9
        sharedscripts
 
10
        prerotate
 
11
                if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
 
12
                        run-parts /etc/logrotate.d/httpd-prerotate; \
 
13
                fi; \
 
14
        endscript
10
15
        postrotate
11
16
                [ ! -f /var/run/nginx.pid ] || kill -USR1 `cat /var/run/nginx.pid`
12
17
        endscript