Newer
Older
ngx_http_header_inspect / README
@Andreas Jaggi Andreas Jaggi on 30 Aug 2011 2 KB Initial import
  1. Name
  2. ngx_http_header_inspect - Inspect HTTP headers
  3.  
  4. Synopsis
  5. location /foo {
  6. inspect_headers on;
  7. inspect_headers_log_violations on;
  8. inspect_headers_block_violations on;
  9.  
  10. # only allow 3 range definitions in Range header
  11. inspect_headers_range_max_bytesets 3;
  12. }
  13.  
  14. Limitations
  15. Currently only inspects the following headers: Range, If-Range,
  16. If-Unmodified-Since, If-Modified-Since, Date
  17.  
  18. Report Bugs
  19. Create a ticket on the issue tracking interface of GitHub:
  20. http://github.com/x-way/ngx_http_header_inspect/issues
  21.  
  22. Source Repository
  23. Available on GitHub:
  24. http://github.com/x-way/ngx_http_header_inspect
  25.  
  26. Author
  27. Andreas Jaggi <andreas.jaggi@waterwave.ch>
  28.  
  29. Copyright & License
  30. Copyright (c) 2011 Andreas Jaggi
  31.  
  32. This module is licensed under the terms of the BSD license.
  33.  
  34. Redistribution and use in source and binary forms, with or without
  35. modification, are permitted provided that the following conditions are
  36. met:
  37.  
  38. * Redistributions of source code must retain the above copyright
  39. notice, this list of conditions and the following disclaimer.
  40.  
  41. * Redistributions in binary form must reproduce the above copyright
  42. notice, this list of conditions and the following disclaimer in the
  43. documentation and/or other materials provided with the distribution.
  44.  
  45. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
  46. IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  47. TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  48. PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  49. HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  50. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
  51. TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  52. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  53. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  54. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  55. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.