pbr: update to 1.1.7-10
[feed/packages.git] / net / nginx / Config_ssl.in
1 #
2 # Copyright (C) 2010-2016 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-ssl
10
11 config NGINX_DAV
12 bool
13 prompt "Enable WebDAV module"
14 help
15 Enable the HTTP and WebDAV methods PUT, DELETE, MKCOL, COPY and MOVE.
16 default n
17
18 config NGINX_FLV
19 bool
20 prompt "Enable FLV module"
21 help
22 Provides the ability to seek within FLV (Flash) files using time-based offsets.
23 default n
24
25 config NGINX_STUB_STATUS
26 bool
27 prompt "Enable stub status module"
28 help
29 Enable the stub status module which gives some status from the server.
30 default n
31
32 config NGINX_HTTP_CHARSET
33 bool
34 prompt "Enable HTTP charset module"
35 default y
36
37 config NGINX_HTTP_GZIP
38 bool
39 prompt "Enable HTTP gzip module"
40 default y
41
42 config NGINX_HTTP_GZIP_STATIC
43 bool
44 prompt "Enable HTTP gzip static module"
45 default y
46
47 config NGINX_HTTP_SSI
48 bool
49 prompt "Enable HTTP ssi module"
50 default y
51
52 config NGINX_HTTP_USERID
53 bool
54 prompt "Enable HTTP userid module"
55 default y
56
57 config NGINX_HTTP_ACCESS
58 bool
59 prompt "Enable HTTP access module"
60 default y
61
62 config NGINX_HTTP_AUTH_BASIC
63 bool
64 prompt "Enable HTTP auth basic"
65 default y
66
67 config NGINX_HTTP_AUTH_REQUEST
68 bool
69 prompt "Enable HTTP auth request module"
70 default n
71
72 config NGINX_HTTP_AUTOINDEX
73 bool
74 prompt "Enable HTTP autoindex module"
75 default y
76
77 config NGINX_HTTP_GEO
78 bool
79 prompt "Enable HTTP geo module"
80 default y
81
82 config NGINX_HTTP_MAP
83 bool
84 prompt "Enable HTTP map module"
85 default y
86
87 config NGINX_HTTP_SPLIT_CLIENTS
88 bool
89 prompt "Enable HTTP split clients"
90 default y
91
92 config NGINX_HTTP_REFERER
93 bool
94 prompt "Enable HTTP referer module"
95 default y
96
97 config NGINX_HTTP_REWRITE
98 bool
99 prompt "Enable HTTP rewrite module"
100 select NGINX_PCRE
101 default y
102
103 config NGINX_HTTP_PROXY
104 bool
105 prompt "Enable HTTP proxy module"
106 default y
107
108 config NGINX_HTTP_FASTCGI
109 bool
110 prompt "Enable HTTP fastcgi module"
111 default y
112
113 config NGINX_HTTP_UWSGI
114 bool
115 prompt "Enable HTTP uwsgi module"
116 default y
117
118 config NGINX_HTTP_SCGI
119 bool
120 prompt "Enable HTTP scgi module"
121 default y
122
123 config NGINX_HTTP_MEMCACHED
124 bool
125 prompt "Enable HTTP memcached module"
126 default y
127
128 config NGINX_HTTP_LIMIT_CONN
129 bool
130 prompt "Enable HTTP limit conn"
131 default y
132
133 config NGINX_HTTP_LIMIT_REQ
134 bool
135 prompt "Enable HTTP limit req"
136 default y
137
138 config NGINX_HTTP_EMPTY_GIF
139 bool
140 prompt "Enable HTTP empty gif"
141 default y
142
143 config NGINX_HTTP_BROWSER
144 bool
145 prompt "Enable HTTP browser module"
146 default y
147
148 config NGINX_HTTP_UPSTREAM_HASH
149 bool
150 prompt "Enable HTTP hash module"
151 default y
152
153 config NGINX_HTTP_UPSTREAM_IP_HASH
154 bool
155 prompt "Enable HTTP IP hash module"
156 default y
157
158 config NGINX_HTTP_UPSTREAM_LEAST_CONN
159 bool
160 prompt "Enable HTTP least conn module"
161 default y
162
163 config NGINX_HTTP_UPSTREAM_KEEPALIVE
164 bool
165 prompt "Enable HTTP keepalive module"
166 default y
167
168 config NGINX_HTTP_CACHE
169 bool
170 prompt "Enable HTTP cache"
171 default y
172
173 config NGINX_HTTP_V2
174 bool
175 prompt "Enable HTTP_V2 module"
176 default y
177
178 config NGINX_HTTP_QUIC
179 bool
180 prompt "Enable QUIC support"
181 default n
182
183 config NGINX_PCRE
184 bool
185 prompt "Enable PCRE library usage"
186 default y
187
188 config NGINX_HTTP_REAL_IP
189 bool
190 prompt "Enable HTTP real ip module"
191 default n
192
193 config NGINX_HTTP_SECURE_LINK
194 bool
195 prompt "Enable HTTP secure link module"
196 default n
197
198 config NGINX_HTTP_SUB
199 bool
200 prompt "Enable HTTP sub module"
201 default n
202
203 config NGINX_STREAM_REAL_IP
204 bool
205 prompt "Enable STREAM real ip module"
206 default n
207
208 endmenu