mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-11 14:05:12 +00:00
5a2c661efa
Lua filter support is highly experimental. The documentation was added to allow first lua filter implementations. The API is not stabilized and must be improved to be fully usable. This docuementation is quite light for now. But more will be added.
56 lines
838 B
Plaintext
56 lines
838 B
Plaintext
# Below we forbid everything and only allow what we know, that's much easier
|
|
# than blocking about 500 different test files and bug report outputs.
|
|
/.*
|
|
/*
|
|
!/.cirrus.yml
|
|
!/.gitattributes
|
|
!/.github
|
|
!/.gitignore
|
|
!/.travis.yml
|
|
!/CHANGELOG
|
|
!/LICENSE
|
|
!/BRANCHES
|
|
!/Makefile
|
|
!/README
|
|
!/INSTALL
|
|
!/CONTRIBUTING
|
|
!/MAINTAINERS
|
|
!/ROADMAP
|
|
!/SUBVERS
|
|
!/VERDATE
|
|
!/VERSION
|
|
!/addons
|
|
!/admin
|
|
!/dev
|
|
!/doc
|
|
!/ebtree
|
|
!/examples
|
|
!/include
|
|
!/src
|
|
!/tests
|
|
!/debian
|
|
!/scripts
|
|
!/reg-tests
|
|
# Reject some generic files
|
|
*.o
|
|
*.a
|
|
*~
|
|
*.rej
|
|
*.orig
|
|
*.bak
|
|
# And reject some specific files
|
|
/admin/halog/halog
|
|
/admin/dyncookie/dyncookie
|
|
/admin/iprange/ip6range
|
|
/admin/iprange/iprange
|
|
/admin/systemd/haproxy.service
|
|
dev/base64/base64rev-gen
|
|
dev/flags/flags
|
|
dev/poll/poll
|
|
dev/tcploop/tcploop
|
|
dev/hpack/decode
|
|
dev/hpack/gen-rht
|
|
/src/dlmalloc.c
|
|
/tests/test_hashes
|
|
doc/lua-api/_build
|