From 020d52d5f8833d28801e53a3b240d26c6fe9e28e Mon Sep 17 00:00:00 2001 From: dzikoysk Date: Fri, 30 Oct 2020 12:53:39 +0100 Subject: [PATCH] GH-295 Release 2.9.3 (Resolve #295) --- docs/docs/configuration.html | 12 ++++++++++++ docs/docs/configuration/index.html | 12 ++++++++++++ docs/docs/docker.html | 4 ++-- docs/docs/docker/index.html | 4 ++-- docs/docs/install.html | 4 ++-- docs/docs/install/index.html | 4 ++-- pom.xml | 2 +- reposilite-backend/pom.xml | 2 +- .../panda_lang/reposilite/ReposiliteConstants.java | 2 +- reposilite-site/docs/configuration.md | 12 ++++++++++++ reposilite-site/docs/docker.md | 4 ++-- 11 files changed, 49 insertions(+), 13 deletions(-) diff --git a/docs/docs/configuration.html b/docs/docs/configuration.html index 6757462db..53349e156 100644 --- a/docs/docs/configuration.html +++ b/docs/docs/configuration.html @@ -88,6 +88,18 @@

# Debug debugEnabled: false +# Support encrypted connections +sslEnabled: true +# SSL port to bind +sslPort: 443 +# Key store file to use. +# You can specify absolute path to the given file or use ${WORKING_DIRECTORY} variable. +keyStorePath: ${WORKING_DIRECTORY}/keystore.jks +# Key store password to use +keyStorePassword: reposilite +# Redirect http traffic to https +enforceSsl: false + # Control the maximum amount of data assigned to Reposilite instance # Supported formats: 90%, 500MB, 10GB diskQuota: 85% diff --git a/docs/docs/configuration/index.html b/docs/docs/configuration/index.html index 6757462db..53349e156 100644 --- a/docs/docs/configuration/index.html +++ b/docs/docs/configuration/index.html @@ -88,6 +88,18 @@

# Debug debugEnabled: false +# Support encrypted connections +sslEnabled: true +# SSL port to bind +sslPort: 443 +# Key store file to use. +# You can specify absolute path to the given file or use ${WORKING_DIRECTORY} variable. +keyStorePath: ${WORKING_DIRECTORY}/keystore.jks +# Key store password to use +keyStorePassword: reposilite +# Redirect http traffic to https +enforceSsl: false + # Control the maximum amount of data assigned to Reposilite instance # Supported formats: 90%, 500MB, 10GB diskQuota: 85% diff --git a/docs/docs/docker.html b/docs/docs/docker.html index 3b58e5d5a..2b30f83fd 100644 --- a/docs/docs/docker.html +++ b/docs/docs/docker.html @@ -61,8 +61,8 @@

Installation

First of all, you have to pull the image from DockerHub:

-
// released builds, e.g. 2.9.2
-$ docker pull dzikoysk/reposilite:2.9.0
+
// released builds, e.g. 2.9.3
+$ docker pull dzikoysk/reposilite:2.9.3
 
 // nightly builds
 $ docker pull dzikoysk/reposilite:nightly
diff --git a/docs/docs/docker/index.html b/docs/docs/docker/index.html
index 3b58e5d5a..2b30f83fd 100644
--- a/docs/docs/docker/index.html
+++ b/docs/docs/docker/index.html
@@ -61,8 +61,8 @@
 
 

Installation

First of all, you have to pull the image from DockerHub:

-
// released builds, e.g. 2.9.2
-$ docker pull dzikoysk/reposilite:2.9.0
+
// released builds, e.g. 2.9.3
+$ docker pull dzikoysk/reposilite:2.9.3
 
 // nightly builds
 $ docker pull dzikoysk/reposilite:nightly
diff --git a/docs/docs/install.html b/docs/docs/install.html
index e618a1e7a..4bc4a9270 100644
--- a/docs/docs/install.html
+++ b/docs/docs/install.html
@@ -65,14 +65,14 @@
 

Requirements

  • Java 8+
  • -
  • RAM 8MB+
  • +
  • RAM 12MB+
- + diff --git a/docs/docs/install/index.html b/docs/docs/install/index.html index e618a1e7a..4bc4a9270 100644 --- a/docs/docs/install/index.html +++ b/docs/docs/install/index.html @@ -65,14 +65,14 @@

Requirements

  • Java 8+
  • -
  • RAM 8MB+
  • +
  • RAM 12MB+
AmountDescription
8MBTiny repository for personal projects
12MBTiny repository for personal projects
16MB - 32MB--------------------^------------------ + CI + Proxy
48MB - 128MBTiny public repository (recommended)
128MB+Public repository
- + diff --git a/pom.xml b/pom.xml index 43887f915..c6131b310 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ org.panda-langreposilite-parentpom - 2.9.2 + 2.9.3 reposilite-backend diff --git a/reposilite-backend/pom.xml b/reposilite-backend/pom.xml index 6d37cbc57..35566a7d3 100644 --- a/reposilite-backend/pom.xml +++ b/reposilite-backend/pom.xml @@ -18,7 +18,7 @@ reposilite-parent org.panda-lang - 2.9.2 + 2.9.3 4.0.0 diff --git a/reposilite-backend/src/main/java/org/panda_lang/reposilite/ReposiliteConstants.java b/reposilite-backend/src/main/java/org/panda_lang/reposilite/ReposiliteConstants.java index 54136b5cb..d5547a188 100644 --- a/reposilite-backend/src/main/java/org/panda_lang/reposilite/ReposiliteConstants.java +++ b/reposilite-backend/src/main/java/org/panda_lang/reposilite/ReposiliteConstants.java @@ -18,7 +18,7 @@ public final class ReposiliteConstants { - public static final String VERSION = "2.9.2"; + public static final String VERSION = "2.9.3"; public static final String REMOTE_VERSION = "https://repo.panda-lang.org/org/panda-lang/reposilite/latest"; diff --git a/reposilite-site/docs/configuration.md b/reposilite-site/docs/configuration.md index df9a53b4b..73c263c6b 100644 --- a/reposilite-site/docs/configuration.md +++ b/reposilite-site/docs/configuration.md @@ -39,6 +39,18 @@ forwardedIp: X-Forwarded-For # Debug debugEnabled: false +# Support encrypted connections +sslEnabled: true +# SSL port to bind +sslPort: 443 +# Key store file to use. +# You can specify absolute path to the given file or use ${WORKING_DIRECTORY} variable. +keyStorePath: ${WORKING_DIRECTORY}/keystore.jks +# Key store password to use +keyStorePassword: reposilite +# Redirect http traffic to https +enforceSsl: false + # Control the maximum amount of data assigned to Reposilite instance # Supported formats: 90%, 500MB, 10GB diskQuota: 85% diff --git a/reposilite-site/docs/docker.md b/reposilite-site/docs/docker.md index f33f8b01f..c2db3bf88 100644 --- a/reposilite-site/docs/docker.md +++ b/reposilite-site/docs/docker.md @@ -13,8 +13,8 @@ Reposilite defines two types of builds: First of all, you have to pull the image from [DockerHub](https://hub.docker.com/r/dzikoysk/reposilite): ```shell-session -// released builds, e.g. 2.9.2 -$ docker pull dzikoysk/reposilite:2.9.2 +// released builds, e.g. 2.9.3 +$ docker pull dzikoysk/reposilite:2.9.3 // nightly builds $ docker pull dzikoysk/reposilite:nightly
AmountDescription
8MBTiny repository for personal projects
12MBTiny repository for personal projects
16MB - 32MB--------------------^------------------ + CI + Proxy
48MB - 128MBTiny public repository (recommended)
128MB+Public repository