blob: f96743c2f93352e365559f1485d7c3e445181b4b [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
94org.apache.felix.http.nio.name = NIO for HTTP
95org.apache.felix.http.nio.description = Wether or not to use NIO for HTTP. \
96 Defaults to true. Only used if HTTP is enabled.
97
98org.apache.felix.https.nio.name = NIO for HTTPS
99org.apache.felix.https.nio.description = Wether or not to use NIO for HTTP. \
100 Defaults to the value of the NIO for HTTP property. Only used if HTTPS is \
Felix Meschberger815934f2011-09-23 13:00:33 +0000101 enabled.
102
103org.apache.felix.http.mbeans.name = Register MBeans
104org.apache.felix.http.mbeans.description = Whether or not to use register \
Felix Meschberger66859262011-11-03 10:42:58 +0000105 JMX MBeans from the servlet container (Jetty). If this is enabled \
106 Jetty Request and Connector statistics are also enabled. The default is \
107 to not enable JMX.
Felix Meschberger8ff31212011-11-03 10:25:11 +0000108
109org.apache.felix.http.jetty.headerBufferSize.name = Header Buffer Size
110org.apache.felix.http.jetty.headerBufferSize.description = Size of the \
111 buffer for request and response headers. Default is 16KB.
112
113org.apache.felix.http.jetty.requestBufferSize.name = Request Buffer Size
114org.apache.felix.http.jetty.requestBufferSize.description = Size of the \
115 buffer for requests not fitting the header buffer. Default is 8KB.
116
117org.apache.felix.http.jetty.responseBufferSize.name = Response Buffer Size
118org.apache.felix.http.jetty.responseBufferSize.description = Size of the \
119 buffer for responses. Default is 24KB.
Felix Meschbergere0fc09b2012-01-05 11:25:35 +0000120
121org.apache.felix.http.context_path.name = Context Path
122org.apache.felix.http.context_path.description = The Servlet Context Path \
123 to use for the Http Service. If this property is not configured it \
124 defaults to "/". This must be a valid path starting with a slash and not \
Felix Meschberger0de558d2013-06-25 12:47:02 +0000125 ending with a slash (unless it is the root context).
126
127org.apache.felix.http.path_exclusions.name = Path Exclusions
128org.apache.felix.http.path_exclusions.description = Contains a list of \
129 context path prefixes. If a Web Application Bundle is started with a \
130 context path matching any of these prefixes, it will not be deployed \
Felix Meschbergerc41f90f2014-01-08 19:56:45 +0000131 in the servlet container.
132
133org.apache.felix.https.jetty.cipersuites.excluded.name = Excluded cipher suites
134org.apache.felix.https.jetty.cipersuites.excluded.description = List of cipher \
135 suites that should be excluded. Default is none.
136
137org.apache.felix.https.jetty.cipersuites.included.name = Included cipher suites
138org.apache.felix.https.jetty.cipersuites.included.description = List of cipher \
139 suites that should be included. Default is none.