mirror of
https://github.com/zxing/zxing.git
synced 2025-02-02 05:41:08 -08:00
Add server.xml too for safekeeping
git-svn-id: https://zxing.googlecode.com/svn/trunk@2348 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
d1b3ca2e24
commit
b58a3e3c1d
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash
|
||||
export CATALINA_OPTS="-server -da -dsa -Xmx80m -XX:+UseCompressedOops"
|
||||
export CATALINA_OPTS="-server -da -dsa -Xmx80m"
|
||||
while :
|
||||
do
|
||||
pkill -KILL java
|
||||
|
|
45
zxingorg/server.xml
Normal file
45
zxingorg/server.xml
Normal file
|
@ -0,0 +1,45 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<Server port="8005" shutdown="SHUTDOWN">
|
||||
|
||||
<Listener className="org.apache.catalina.core.JasperListener" />
|
||||
<Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />
|
||||
<Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
|
||||
<Listener className="org.apache.catalina.core.ThreadLocalLeakPreventionListener" />
|
||||
|
||||
<Service name="Catalina">
|
||||
|
||||
<Connector port="80" protocol="HTTP/1.1"
|
||||
connectionTimeout="20000" />
|
||||
|
||||
<Engine name="Catalina" defaultHost="localhost">
|
||||
|
||||
<Host name="localhost" appBase="webapps"
|
||||
unpackWARs="false" autoDeploy="true">
|
||||
|
||||
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
|
||||
prefix="localhost_access_log." suffix=".txt"
|
||||
pattern="%h %l %u %t "%r" %s %b" />
|
||||
|
||||
</Host>
|
||||
|
||||
</Engine>
|
||||
|
||||
</Service>
|
||||
|
||||
</Server>
|
Loading…
Reference in a new issue