blob: b9bb0a46dbc91087fd3ee79a77d3bce51ca9769e [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
30org.osgi.service.http.port.name = HTTP Port
31org.osgi.service.http.port.description = Port to listen on for HTTP requests. \
32 Defaults to 8080.
33
34org.osgi.service.http.port.secure.name = HTTPS Port
35org.osgi.service.http.port.secure.description = Port to listen on for HTTPS \
36 requests. Defaults to 433.
37
Felix Meschbergerf45066a2011-11-03 09:43:37 +000038org.apache.felix.http.timeout.name = Connection Timeout
39org.apache.felix.http.timeout.description = Time limit for reaching an \
40 timeout specified in milliseconds. This property applies to both HTTP \
41 and HTTP connections. Defaults to 60 seconds.
42
Felix Meschberger1ac50ed2011-01-08 06:55:13 +000043org.apache.felix.http.debug.name = Debug Logging
44org.apache.felix.http.debug.description = Whether to write DEBUG level \
45 messages or not. Defaults to false.
46
47org.apache.felix.https.keystore.name = Keystore
48org.apache.felix.https.keystore.description = Absolute Path to the Keystore to \
49 use for HTTPS. Only used if HTTPS is enabled in which case this property is \
50 required.
51
52org.apache.felix.https.keystore.password.name = Keystore Password
53org.apache.felix.https.keystore.password.description = Password to access the \
54 Keystore. Only used if HTTPS is enabled.
55
56org.apache.felix.https.keystore.key.password.name = Key Password
57org.apache.felix.https.keystore.key.password.description = Password to unlock \
58 the secret key from the Keystore. Only used if HTTPS is enabled.
59
60org.apache.felix.http.enable.name = Enable HTTP
61org.apache.felix.http.enable.description = Whether or not HTTP is enabled. \
62 Defaults to true thus HTTP enabled.
63
64org.apache.felix.https.enable.name = Enable HTTPS
65org.apache.felix.https.enable.description = Whether or not HTTPS is enabled. \
66 Defaults to false thus HTTPS disabled.
67
68org.apache.felix.https.truststore.name = Truststore
69org.apache.felix.https.truststore.description = Absolute Path to the Truststore \
70 to use for HTTPS. Only used if HTTPS is enabled.
71
72 org.apache.felix.https.truststore.password.name = Truststore Password
73 org.apache.felix.https.truststore.password.description = Password to access the \
74 Truststore. Only used if HTTPS is enabled.
75
76org.apache.felix.https.clientcertificate.name = Client Certificate
77org.apache.felix.https.clientcertificate.description = Requirement for the \
78 Client to provide a valid certifcate. Defaults to none.
79
80clientcertificate.none = No Client Certificate
81clientcertificate.wants = Client Certficate Wanted
82clientcertificate.needs = Client Certificate Needed
83
84org.apache.felix.http.nio.name = NIO for HTTP
85org.apache.felix.http.nio.description = Wether or not to use NIO for HTTP. \
86 Defaults to true. Only used if HTTP is enabled.
87
88org.apache.felix.https.nio.name = NIO for HTTPS
89org.apache.felix.https.nio.description = Wether or not to use NIO for HTTP. \
90 Defaults to the value of the NIO for HTTP property. Only used if HTTPS is \
Felix Meschberger815934f2011-09-23 13:00:33 +000091 enabled.
92
93org.apache.felix.http.mbeans.name = Register MBeans
94org.apache.felix.http.mbeans.description = Whether or not to use register \
Felix Meschberger8ff31212011-11-03 10:25:11 +000095 JMX MBeans from the servlet container (Jetty).
96
97org.apache.felix.http.jetty.headerBufferSize.name = Header Buffer Size
98org.apache.felix.http.jetty.headerBufferSize.description = Size of the \
99 buffer for request and response headers. Default is 16KB.
100
101org.apache.felix.http.jetty.requestBufferSize.name = Request Buffer Size
102org.apache.felix.http.jetty.requestBufferSize.description = Size of the \
103 buffer for requests not fitting the header buffer. Default is 8KB.
104
105org.apache.felix.http.jetty.responseBufferSize.name = Response Buffer Size
106org.apache.felix.http.jetty.responseBufferSize.description = Size of the \
107 buffer for responses. Default is 24KB.