blob: e0d7ebe0ce6b5e1e3201ddb04213a44f5e08f847 [file] [log] [blame]
Felix Meschberger1ac50ed2011-01-08 06:55:13 +00001#
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
18#
19
20
21#
22# This file contains localization strings for configuration labels and
23# descriptions as used in the metatype.xml descriptor generated by the
24# the Felix SCR plugin
25
26org.apache.felix.http.jetty.internal.JettyConfig.name = Apache Felix Jetty Based Http Service
27org.apache.felix.http.jetty.internal.JettyConfig.description = Configuration for \
28 the embedded Jetty Servlet Container.
29
Felix Meschberger66859262011-11-03 10:42:58 +000030org.apache.felix.http.host.name = Host Name
31org.apache.felix.http.host.description = IP Address or Host Name of the \
32 interface to which HTTP and HTTPS bind. The default is "0.0.0.0" \
33 indicating all interfaces.
34
Felix Meschberger1ac50ed2011-01-08 06:55:13 +000035org.osgi.service.http.port.name = HTTP Port
36org.osgi.service.http.port.description = Port to listen on for HTTP requests. \
37 Defaults to 8080.
38
39org.osgi.service.http.port.secure.name = HTTPS Port
40org.osgi.service.http.port.secure.description = Port to listen on for HTTPS \
41 requests. Defaults to 433.
42
Felix Meschbergerf45066a2011-11-03 09:43:37 +000043org.apache.felix.http.timeout.name = Connection Timeout
44org.apache.felix.http.timeout.description = Time limit for reaching an \
45 timeout specified in milliseconds. This property applies to both HTTP \
46 and HTTP connections. Defaults to 60 seconds.
47
Felix Meschberger66859262011-11-03 10:42:58 +000048org.apache.felix.http.session.timeout.name = Session Timeout
49org.apache.felix.http.session.timeout.description = Default lifetime of \
50 an HTTP session specified in a whole number of minutes. If the timeout \
51 is 0 or less, sessions will by default never timeout. The default is 0.
52
Felix Meschberger1ac50ed2011-01-08 06:55:13 +000053org.apache.felix.http.debug.name = Debug Logging
54org.apache.felix.http.debug.description = Whether to write DEBUG level \
55 messages or not. Defaults to false.
56
57org.apache.felix.https.keystore.name = Keystore
58org.apache.felix.https.keystore.description = Absolute Path to the Keystore to \
59 use for HTTPS. Only used if HTTPS is enabled in which case this property is \
60 required.
61
62org.apache.felix.https.keystore.password.name = Keystore Password
63org.apache.felix.https.keystore.password.description = Password to access the \
64 Keystore. Only used if HTTPS is enabled.
65
66org.apache.felix.https.keystore.key.password.name = Key Password
67org.apache.felix.https.keystore.key.password.description = Password to unlock \
68 the secret key from the Keystore. Only used if HTTPS is enabled.
69
70org.apache.felix.http.enable.name = Enable HTTP
71org.apache.felix.http.enable.description = Whether or not HTTP is enabled. \
72 Defaults to true thus HTTP enabled.
73
74org.apache.felix.https.enable.name = Enable HTTPS
75org.apache.felix.https.enable.description = Whether or not HTTPS is enabled. \
76 Defaults to false thus HTTPS disabled.
77
78org.apache.felix.https.truststore.name = Truststore
79org.apache.felix.https.truststore.description = Absolute Path to the Truststore \
80 to use for HTTPS. Only used if HTTPS is enabled.
81
82 org.apache.felix.https.truststore.password.name = Truststore Password
83 org.apache.felix.https.truststore.password.description = Password to access the \
84 Truststore. Only used if HTTPS is enabled.
85
86org.apache.felix.https.clientcertificate.name = Client Certificate
87org.apache.felix.https.clientcertificate.description = Requirement for the \
88 Client to provide a valid certifcate. Defaults to none.
89
90clientcertificate.none = No Client Certificate
91clientcertificate.wants = Client Certficate Wanted
92clientcertificate.needs = Client Certificate Needed
93
Felix Meschberger815934f2011-09-23 13:00:33 +000094org.apache.felix.http.mbeans.name = Register MBeans
95org.apache.felix.http.mbeans.description = Whether or not to use register \
Felix Meschberger66859262011-11-03 10:42:58 +000096 JMX MBeans from the servlet container (Jetty). If this is enabled \
97 Jetty Request and Connector statistics are also enabled. The default is \
98 to not enable JMX.
Felix Meschberger8ff31212011-11-03 10:25:11 +000099
100org.apache.felix.http.jetty.headerBufferSize.name = Header Buffer Size
101org.apache.felix.http.jetty.headerBufferSize.description = Size of the \
102 buffer for request and response headers. Default is 16KB.
103
104org.apache.felix.http.jetty.requestBufferSize.name = Request Buffer Size
105org.apache.felix.http.jetty.requestBufferSize.description = Size of the \
106 buffer for requests not fitting the header buffer. Default is 8KB.
107
108org.apache.felix.http.jetty.responseBufferSize.name = Response Buffer Size
109org.apache.felix.http.jetty.responseBufferSize.description = Size of the \
110 buffer for responses. Default is 24KB.
Felix Meschbergere0fc09b2012-01-05 11:25:35 +0000111
Carsten Ziegeler6ce2f6f2014-01-21 21:28:56 +0000112org.apache.felix.http.jetty.maxFormSize.name = Maxmimum Form Size
113org.apache.felix.http.jetty.maxFormSize.description = Size of Body for \
114 submitted form content. Default is 200KB.
115
Felix Meschbergere0fc09b2012-01-05 11:25:35 +0000116org.apache.felix.http.context_path.name = Context Path
117org.apache.felix.http.context_path.description = The Servlet Context Path \
118 to use for the Http Service. If this property is not configured it \
119 defaults to "/". This must be a valid path starting with a slash and not \
Felix Meschberger0de558d2013-06-25 12:47:02 +0000120 ending with a slash (unless it is the root context).
121
122org.apache.felix.http.path_exclusions.name = Path Exclusions
123org.apache.felix.http.path_exclusions.description = Contains a list of \
124 context path prefixes. If a Web Application Bundle is started with a \
125 context path matching any of these prefixes, it will not be deployed \
Felix Meschbergerc41f90f2014-01-08 19:56:45 +0000126 in the servlet container.
127
128org.apache.felix.https.jetty.cipersuites.excluded.name = Excluded cipher suites
129org.apache.felix.https.jetty.cipersuites.excluded.description = List of cipher \
130 suites that should be excluded. Default is none.
131
132org.apache.felix.https.jetty.cipersuites.included.name = Included cipher suites
133org.apache.felix.https.jetty.cipersuites.included.description = List of cipher \
134 suites that should be included. Default is none.
Carsten Ziegelerb1911ab2014-07-22 16:26:35 +0000135
Felix Meschbergerc7d5d5f2014-10-20 12:11:19 +0000136org.apache.felix.https.jetty.protocols.included.name = Included protocols
137org.apache.felix.https.jetty.protocols.included.description = List of SSL protocols \
138 to include by default. Protocols may be any supported by the Java \
139 platform such as SSLv2Hello, SSLv3, TLSv1, TLSv1.1, or TLSv1.2. Any \
140 listed protocl not supported is silently ignored. Default \
141 is none assuming to use any protocol enabled and supported on the platform.
142
143org.apache.felix.https.jetty.protocols.excluded.name = Excluded protocols
144org.apache.felix.https.jetty.protocols.excluded.description = List of SSL protocols \
145 to exclude. This property further restricts the enabled protocols by \
146 explicitly disabling. Any protocol listed in both this property and the \
147 Included protocols property is excluded. Default is none such as to \
148 accept all protocols enabled on platform or explicitly listed by the \
149 Included protocols property.
150
Carsten Ziegelerb1911ab2014-07-22 16:26:35 +0000151org.apache.felix.http.jetty.sendServerHeader.name = Send Server Header
152org.apache.felix.http.jetty.sendServerHeader.description = If enabled, the server header is sent.