Opened 6 years ago
Closed 6 years ago
#1663 closed enhancement (wontfix)
Could we extend nginx by our own misc type modules
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | nginx-module | Version: | 1.15.x |
Keywords: | Cc: | ||
uname -a: | |||
nginx -V: | nginx version: nginx/1.15.3 |
Description
At first, I must apologize that I use trac to commit patch, the reason is that I can not config hg's email and patchbomb successfully.
In my practice I wrote some special modules which are not http
or stream
type(they do not work with http or tcp/udp). The core
type is too 'heavy', the misc
type is a more suitable choice.
But at this time Nginx do not support foreign users to write their own misc
modules.
So I hope Nginx team could consider this request and let Nginx became more extendable.
The attachment is a reference implement, it can work but may not be the best solution.
Thanks.
Attachments (1)
Change History (2)
by , 6 years ago
Attachment: | modules.patch added |
---|
comment:1 by , 6 years ago
Resolution: | → wontfix |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
There are no real differences between
MISC
andCORE
modules except naming - theMISC
type is used for modules in themisc/
directory. There should be no reasons to useMISC
in 3rd party modules.