lighttpd: update lighttpd to 1.4.35
[packages.git] / net / nginx / Config.in
1 #
2 # Copyright (C) 2010-2012 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 menu "Configuration"
9         depends on PACKAGE_nginx
10
11 config NGINX_STUB_STATUS
12         bool
13         prompt "Enable stub status module"
14         help
15                 Enable the stub status module which gives some status from the server.
16
17 config NGINX_FLV
18         bool
19         prompt "Enable FLV module"
20         help
21                 Provides the ability to seek within FLV (Flash) files using time-based offsets.
22
23 config NGINX_SSL
24         bool
25         prompt "Enable SSL module"
26         help
27                 Enable HTTPS/SSL support.
28
29 config NGINX_DAV
30         bool
31         prompt "Enable WebDAV module"
32         help
33                 Enable the HTTP and WebDAV methods PUT, DELETE, MKCOL, COPY and MOVE.
34
35 config NGINX_LUA
36         bool
37         prompt "Enable LUA module"
38         help
39                 Enable support for LUA scripts.
40
41 config NGINX_PCRE
42         bool
43         prompt "Enable PCRE library usage"
44         default y
45
46 config NGINX_HTTP_CACHE
47         bool
48         prompt "Enable HTTP cache"
49
50 config NGINX_HTTP_CHARSET
51         bool
52         prompt "Enable HTTP charset module"
53         default y
54
55 config NGINX_HTTP_GZIP
56         bool
57         prompt "Enable HTTP gzip module"
58         default y
59
60 config NGINX_HTTP_SSI
61         bool
62         prompt "Enable HTTP ssi module"
63         default y
64
65 config NGINX_HTTP_USERID
66         bool
67         prompt "Enable HTTP userid module"
68         default y
69
70 config NGINX_HTTP_ACCESS
71         bool
72         prompt "Enable HTTP access module"
73         default y
74
75 config NGINX_HTTP_AUTH_BASIC
76         bool
77         prompt "Enable HTTP auth basic"
78         default y
79
80 config NGINX_HTTP_AUTOINDEX
81         bool
82         prompt "Enable HTTP autoindex module"
83         default y
84
85 config NGINX_HTTP_GEO
86         bool
87         prompt "Enable HTTP geo module"
88         default y
89
90 config NGINX_HTTP_MAP
91         bool
92         prompt "Enable HTTP map module"
93         default y
94
95 config NGINX_HTTP_SPLIT_CLIENTS
96         bool
97         prompt "Enable HTTP split clients"
98         default y
99
100 config NGINX_HTTP_REFERER
101         bool
102         prompt "Enable HTTP referer module"
103         default y
104
105 config NGINX_HTTP_REWRITE
106         bool
107         prompt "Enable HTTP rewrite module"
108         select NGINX_PCRE
109         default y
110
111 config NGINX_HTTP_PROXY
112         bool
113         prompt "Enable HTTP proxy module"
114         default y
115
116 config NGINX_HTTP_FASTCGI
117         bool
118         prompt "Enable HTTP fastcgi module"
119         default y
120
121 config NGINX_HTTP_UWSGI
122         bool
123         prompt "Enable HTTP uwsgi module"
124         default y
125
126 config NGINX_HTTP_SCGI
127         bool
128         prompt "Enable HTTP scgi module"
129         default y
130
131 config NGINX_HTTP_MEMCACHED
132         bool
133         prompt "Enable HTTP memcached module"
134         default y
135
136 config NGINX_HTTP_LIMIT_CONN
137         bool
138         prompt "Enable HTTP limit conn"
139         default y
140
141 config NGINX_HTTP_LIMIT_REQ
142         bool
143         prompt "Enable HTTP limit req"
144         default y
145
146 config NGINX_HTTP_EMPTY_GIF
147         bool
148         prompt "Enable HTTP empty gif"
149         default y
150
151 config NGINX_HTTP_BROWSER
152         bool
153         prompt "Enable HTTP browser module"
154         default y
155
156 config NGINX_HTTP_UPSTREAM_IP_HASH
157         bool
158         prompt "Enable HTTP IP hash module"
159         default y
160
161 endmenu