From a93c6445e1f541a9bd9250660e854d8544ac16dc Mon Sep 17 00:00:00 2001 From: Hugues Malphettes Date: Sat, 31 Jul 2010 00:35:22 +0000 Subject: [PATCH] remove the unused copied configuration files. cleanup the default config file git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2201 7e9141cc-0065-0410-87d8-b60c137991c4 --- .../jettyhome/etc/jdbcRealm.properties | 72 ----- .../jettyhome/etc/jetty-ajp.xml | 18 -- .../jettyhome/etc/jetty-bio-ssl.xml | 25 -- .../jettyhome/etc/jetty-bio.xml | 23 -- .../jettyhome/etc/jetty-debug.xml | 23 -- .../jettyhome/etc/jetty-fileserver.xml | 37 --- .../jettyhome/etc/jetty-jaas.xml | 35 --- .../jettyhome/etc/jetty-jmx.xml | 59 ---- .../jettyhome/etc/jetty-logging.xml | 32 -- .../jettyhome/etc/jetty-osgi-default.xml | 33 +- .../jettyhome/etc/jetty-plus.xml | 81 ----- .../jettyhome/etc/jetty-proxy.xml | 64 ---- .../jettyhome/etc/jetty-rewrite.xml | 77 ----- .../jettyhome/etc/jetty-setuid.xml | 17 -- .../jettyhome/etc/jetty-ssl.xml | 29 -- .../jettyhome/etc/jetty-sslengine.xml | 25 -- .../jettyhome/etc/jetty-stats.xml | 19 -- .../jettyhome/etc/jetty-win32-service.xml | 28 -- .../jettyhome/etc/jetty-xinetd.xml | 56 ---- .../jetty-osgi-boot/jettyhome/etc/jetty.xml | 289 ------------------ .../jetty-osgi-boot/jettyhome/etc/keystore | Bin 1416 -> 0 bytes .../jetty-osgi-boot/jettyhome/etc/login.conf | 5 - .../jettyhome/etc/login.properties | 1 - .../jettyhome/etc/realm.properties | 21 -- 24 files changed, 17 insertions(+), 1052 deletions(-) delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jdbcRealm.properties delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-ajp.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-bio-ssl.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-bio.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-debug.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-fileserver.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-jaas.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-jmx.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-logging.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-plus.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-proxy.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-rewrite.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-setuid.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-ssl.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-sslengine.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-stats.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-win32-service.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-xinetd.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty.xml delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/keystore delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/login.conf delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/login.properties delete mode 100644 jetty-osgi/jetty-osgi-boot/jettyhome/etc/realm.properties diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jdbcRealm.properties b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jdbcRealm.properties deleted file mode 100644 index 48104d88ad9..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jdbcRealm.properties +++ /dev/null @@ -1,72 +0,0 @@ -# -# This is a sample properties file for the org.eclipse.jetty.security.JDBCLoginService -# implemtation of the UserRealm interface. This allows Jetty users authentication -# to work from a database. -# -# +-------+ +------------+ +-------+ -# | users | | user_roles | | roles | -# +-------+ +------------+ +-------+ -# | id | /| user_id |\ | id | -# | user -------| role_id |------- role | -# | pwd | \| |/ | | -# +-------+ +------------+ +-------+ -# -# -# 'cachetime' is a time in seconds to cache positive database -# lookups in internal hash table. Set to 0 to disable caching. -# -# -# For MySQL: -# create a MYSQL user called "jetty" with password "jetty" -# -# Create the tables: -# create table users -# ( -# id integer primary key, -# username varchar(100) not null unique key, -# pwd varchar(20) not null -# ); -# -# create table roles -# ( -# id integer primary key, -# role varchar(100) not null unique key -# ); -# -# create table user_roles -# ( -# user_id integer not null, -# role_id integer not null, -# unique key (user_id, role_id), -# index(user_id) -# ); -# -# I'm not sure unique key with a first component of user_id will be -# user by MySQL in query, so additional index wouldn't hurt. -# -# To test JDBC implementation: -# -# mysql> insert into users values (1, 'admin', 'password'); -# mysql> insert into roles values (1, 'server-administrator'); -# mysql> insert into roles values (2, 'content-administrator'); -# mysql> insert into user_roles values (1, 1); -# mysql> insert into user_roles values (1, 2); -# -# Replace HashUserRealm in etc/admin.xml with JDBCUserRealm and -# set path to properties file. -# -jdbcdriver = org.gjt.mm.mysql.Driver -url = jdbc:mysql://localhost/jetty -username = jetty -password = jetty -usertable = users -usertablekey = id -usertableuserfield = username -usertablepasswordfield = pwd -roletable = roles -roletablekey = id -roletablerolefield = role -userroletable = user_roles -userroletableuserkey = user_id -userroletablerolekey = role_id -cachetime = 300 diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-ajp.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-ajp.xml deleted file mode 100644 index 04a775ec3ec..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-ajp.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - 8009 - - - - - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-bio-ssl.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-bio-ssl.xml deleted file mode 100644 index 9c075e46cbe..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-bio-ssl.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - 9443 - 30000 - /etc/keystore - OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4 - OBF:1u2u1wml1z7s1z7a1wnl1u2g - /etc/keystore - OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4 - - - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-bio.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-bio.xml deleted file mode 100644 index 66950eee550..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-bio.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - 50000 - 1500 - - - - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-debug.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-debug.xml deleted file mode 100644 index 0ffccb69bf0..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-debug.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - /yyyy_mm_dd.debug.log - true - 90 - - - - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-fileserver.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-fileserver.xml deleted file mode 100644 index de15b387245..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-fileserver.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - 8080 - - - - - - - - - - - true - - index.html - - . - - - - - - - - - - - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-jaas.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-jaas.xml deleted file mode 100644 index 7513edb8c27..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-jaas.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - java.security.auth.login.config - /etc/login.conf - - - - - - - - - - - - - Test JAAS Realm - xyz - - - - - - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-jmx.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-jmx.xml deleted file mode 100644 index 2d48b6ca20e..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-jmx.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-logging.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-logging.xml deleted file mode 100644 index adfe6d8e5cd..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-logging.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - /logs/yyyy_mm_dd.stderrout.log - false - 90 - GMT - - - - - - Redirecting stderr/stdout to - - - - - - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-osgi-default.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-osgi-default.xml index dc3c1641034..218e60ed232 100644 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-osgi-default.xml +++ b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-osgi-default.xml @@ -106,22 +106,23 @@ .*/jsp-api-[^/]*\.jar$|.*/jsp-[^/]*\.jar$ - - - - - 5 - /contexts - - - - - + + + + + 5 + /contexts + + + + + diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-plus.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-plus.xml deleted file mode 100644 index 7430d6f4843..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-plus.xml +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - org.eclipse.jetty.webapp.WebInfConfiguration - org.eclipse.jetty.webapp.WebXmlConfiguration - org.eclipse.jetty.webapp.MetaInfConfiguration - org.eclipse.jetty.webapp.FragmentConfiguration - org.eclipse.jetty.plus.webapp.EnvConfiguration - org.eclipse.jetty.plus.webapp.Configuration - org.eclipse.jetty.webapp.JettyWebXmlConfiguration - org.eclipse.jetty.webapp.TagLibConfiguration - - - - - - - - - - - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-proxy.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-proxy.xml deleted file mode 100644 index 5bc46c389d2..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-proxy.xml +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - 10 - 50 - - - - - - - - - - - - - - 300000 - 2 - false - 20000 - 5000 - - - - - - - - - org.eclipse.jetty.servlets.ProxyServlet - / - - - - - - - - true - true - true - 1000 - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-rewrite.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-rewrite.xml deleted file mode 100644 index da0eb7b2cd6..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-rewrite.xml +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - true - false - requestedPath - - - - - - - - - - - - - /favicon.ico - Cache-Control - Max-Age=3600,public - true - - - - - - - - /some/old/context/* - /test/dump/newcontext - - - /test/dump/rewrite/* - /test/dump/rewritten - - - /test/dump/rewrite/protect/* - - - - /test/* - - - - /* - /test - - - - - - - /test/dump/regex/([^/]*)/(.*) - /test/dump/$2/$1 - - - - - - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-setuid.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-setuid.xml deleted file mode 100644 index 9a30af74501..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-setuid.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - false - 2 - jetty - jetty - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-ssl.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-ssl.xml deleted file mode 100644 index f2ec1a40858..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-ssl.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - 30000 - 2 - 100 - /etc/keystore - OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4 - OBF:1u2u1wml1z7s1z7a1wnl1u2g - /etc/keystore - OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4 - - - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-sslengine.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-sslengine.xml deleted file mode 100644 index 9e787b0e4f3..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-sslengine.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - 8444 - 30000 - 2 - 100 - /etc/keystore - OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4 - OBF:1u2u1wml1z7s1z7a1wnl1u2g - - - - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-stats.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-stats.xml deleted file mode 100644 index e0a0c7fec35..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-stats.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-win32-service.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-win32-service.xml deleted file mode 100644 index 20287ce7722..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-win32-service.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - true - - true - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-xinetd.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-xinetd.xml deleted file mode 100644 index c2fbaa285ea..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty-xinetd.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - 300000 - 2 - false - 20000 - 5000 - - - - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty.xml b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty.xml deleted file mode 100644 index ecf5f374b00..00000000000 --- a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty.xml +++ /dev/null @@ -1,289 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - 10 - 200 - - - - - - - - - - - - - - - - - 300000 - 2 - false - 8443 - 20000 - 5000 - - - - - - - - - - - - - - - 30000 - 2 - 100 - /etc/keystore - OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4 - OBF:1u2u1wml1z7s1z7a1wnl1u2g - /etc/keystore - OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - org.eclipse.jetty.server.webapp.ContainerIncludeJarPattern - .*/jsp-api-[^/]*\.jar$|.*/jsp-[^/]*\.jar$ - - - - - - /contexts - 5 - - - - - - - - /webapps - /etc/webdefault.xml - 5 - /contexts - - - - - - - - /webapps - /etc/webdefault.xml - 5 - /contexts - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Test Realm - /etc/realm.properties - 0 - - - - - - - - - - - - - - - /logs/yyyy_mm_dd.request.log - yyyy_MM_dd - 90 - true - false - false - GMT - - - - - - - - true - true - true - 1000 - - - - java.naming.factory.initial - - - - java.naming.factory.url.pkgs - - - - diff --git a/jetty-osgi/jetty-osgi-boot/jettyhome/etc/keystore b/jetty-osgi/jetty-osgi-boot/jettyhome/etc/keystore deleted file mode 100644 index 08f6cda8a7b0104236c37f3c06b4cda1d8fc58e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1416 zcmezO_TO6u1_mY|W&~r_tkjZ{N+3_R)UekNZbhDKH`EXUR-=hO7hY&y{H-e(+TowuJ*{`? zwVfT`ns@KmCLd9_H?QZ%#(VNFq-*~l&ib%)(Y!;gI{W`RJIFow^~EB{E~hHzXm8Qd z$+I3OFWL4l%D`0pEH}^DdFqAf_3vNy-07jRmW@8^t|?HpH{w+9zJZ0HTQ{GwgE`KsL0)*BinM>ExK{8V|s z_c83?=Ue&W%>UG?wT~>g^C-D5b6Kid$utMyOUY~8&RQ2O5Kv$6WA72RZCZOI`%XW7 zWGv*iET~D-A?Uf$)PkAXC#^&coOKW1)_jbSp1ybc*-Pg z*1AKX?hJ-g?<}Z|$~fj~%&Q)8GVXHmuY_w7iL*9Li<#ba=>(4shvkf&zalFllPfRmB({Gr>G+(AG{|j5^yi-$J^G%gy&!3%F`Y=?Z zqHag3(zm<4?6(-6S8caBa7ykAzsvLfb>|ds{`&FW?ULoW&INs`nHskiv_4^yUS(;u zwJG}=M=euvt`d*!{pAW3tsAR0lWEH+#d4(r%9_{jEh_BIde_H z2F(udYbrB!9Sz@xPFu0!#>2SI`Ssat!p3^(;?40Uy|?vOtS!3O8Zd1|F}L60tKCOm znylYEA@-w}ri%BqU%N_+XGl&zI@4*vv5nXG(`N27=6zy$WG5s+N9dUvSOODr2QVSG z7&I}yWn%FZKK#XimyJ`a&7GmI50%m z5h5xEN+4Za!qUF^MI{POiIob@`FX{qIVG8S=?VcQl?py3DTaIoJRnuv!mM7P3}z^0 zAOYet3k!lXoL(+aZ&G5VUVc%!ft)z6frX)=fw_T+k%h5YlsK=knSrs9DU>^yoZ2`a zIUIo{19M|9Ff2Qn8XFm!A3o&OeJrUOYjfQ^)giy{^|QK1CEP2QH%vD1Nc3MB^xmW4 z2fxzex2hhF*O)r=%WpirQ+H{vy7qk+o=56U7bdiMykRRo{_oVH)zDhW2yL+!vyn`wiA33|lR42Pgou}g~dvauF+U45K+=Wccj0}v( z&I3j>GtgZkrPhJg=H9<%l_$GC*-}{lrfI>Hv$DOvyPj6+9TS$eJZ37ao71_#A!EVD zCY$?z=d9ULtT&}=o8QIxpMTDAp0ptI@ccyM2W9WgVozM<*}KLmGg5O$WNJ zyVS~6#D7};!ib^4U#WeU%`4Hj5}6$f=N+nWnZl~&!Rl~+N3e: [, ...] -# -# Passwords may be clear text, obfuscated or checksummed. The class -# org.eclipse.util.Password should be used to generate obfuscated -# passwords or password checksums -# -# If DIGEST Authentication is used, the password must be in a recoverable -# format, either plain text or OBF:. -# -jetty: MD5:164c88b302622e17050af52c89945d44,user -admin: CRYPT:adpexzg3FUZAk,server-administrator,content-administrator,admin -other: OBF:1xmk1w261u9r1w1c1xmq,user -plain: plain,user -user: password,user - -# This entry is for digest auth. The credential is a MD5 hash of username:realmname:password -digest: MD5:6e120743ad67abfbc385bc2bb754e297,user