-
Notifications
You must be signed in to change notification settings - Fork 595
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
706 changed files
with
5,645 additions
and
3,506 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
Sonatype Nexus (TM) Open Source Version. | ||
Copyright (c) 2008-2015 Sonatype, Inc. All rights reserved. | ||
Copyright (c) 2008-present Sonatype, Inc. All rights reserved. | ||
All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions | ||
|
||
This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0, | ||
which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html. | ||
|
||
Sonatype Nexus (TM) Open Source Version is distributed with Sencha Ext JS pursuant to a FLOSS Exception agreed upon between Sonatype, Inc. | ||
and Sencha Inc. Sencha Ext JS is licensed under GPL v3 and cannot be redistributed as part of a closed source work. | ||
|
||
Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks | ||
of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the | ||
Eclipse Foundation. All other trademarks are the property of their respective owners. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
assemblies/nexus-bundle-template/src/main/resources/content/NOTICE.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
Sonatype Nexus (TM) Open Source Version. | ||
Copyright (c) 2008-2015 Sonatype, Inc. All rights reserved. | ||
Copyright (c) 2008-present Sonatype, Inc. All rights reserved. | ||
All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions | ||
|
||
This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0, | ||
which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html. | ||
|
||
Sonatype Nexus (TM) Open Source Version is distributed with Sencha Ext JS pursuant to a FLOSS Exception agreed upon between Sonatype, Inc. | ||
and Sencha Inc. Sencha Ext JS is licensed under GPL v3 and cannot be redistributed as part of a closed source work. | ||
|
||
Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks | ||
of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the | ||
Eclipse Foundation. All other trademarks are the property of their respective owners. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 0 additions & 49 deletions
49
...es/nexus-bundle-template/src/main/resources/content/conf/jetty-http-redirect-to-https.xml
This file was deleted.
Oops, something went wrong.
56 changes: 56 additions & 0 deletions
56
assemblies/nexus-bundle-template/src/main/resources/content/conf/jetty-http.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
Sonatype Nexus (TM) Open Source Version | ||
Copyright (c) 2008-present Sonatype, Inc. | ||
All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions. | ||
This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0, | ||
which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html. | ||
Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks | ||
of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the | ||
Eclipse Foundation. All other trademarks are the property of their respective owners. | ||
--> | ||
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd"> | ||
<Configure id="Server" class="org.eclipse.jetty.server.Server"> | ||
<Call name="addConnector"> | ||
<Arg> | ||
<New id="httpConnector" class="org.eclipse.jetty.server.ServerConnector"> | ||
<Arg name="server"><Ref refid="Server"/></Arg> | ||
<Arg name="acceptors" type="int"><Property name="jetty.http.acceptors" default="-1"/></Arg> | ||
<Arg name="selectors" type="int"><Property name="jetty.http.selectors" default="-1"/></Arg> | ||
<Arg name="factories"> | ||
<Array type="org.eclipse.jetty.server.ConnectionFactory"> | ||
<!-- uncomment to support proxy protocol | ||
<Item> | ||
<New class="org.eclipse.jetty.server.ProxyConnectionFactory"/> | ||
</Item>--> | ||
<Item> | ||
<New class="org.sonatype.nexus.bootstrap.jetty.NexusInstrumentedConnectionFactory"> | ||
<Arg> | ||
<New class="org.eclipse.jetty.server.HttpConnectionFactory"> | ||
<Arg name="config"> | ||
<Ref refid="httpConfig"/> | ||
</Arg> | ||
</New> | ||
</Arg> | ||
</New> | ||
</Item> | ||
</Array> | ||
</Arg> | ||
<Set name="host"><Property name="application-host" /></Set> | ||
<Set name="port"><Property name="application-port"/></Set> | ||
<Set name="idleTimeout"><Property name="jetty.http.idleTimeout" default="30000"/></Set> | ||
<Set name="acceptorPriorityDelta"><Property name="jetty.http.acceptorPriorityDelta" default="0"/></Set> | ||
<Set name="acceptQueueSize"><Property name="jetty.http.acceptQueueSize" default="0"/></Set> | ||
<Call name="addBean"> | ||
<Arg> | ||
<New class="org.eclipse.jetty.io.ConnectionStatistics"/> | ||
</Arg> | ||
</Call> | ||
</New> | ||
</Arg> | ||
</Call> | ||
</Configure> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.