Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proxy branch #7

Merged
merged 4 commits into from
Mar 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 24 additions & 6 deletions example-config/config-dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,37 @@
"zookeeper"
],
"clusterId": "iudx-rs-proxy-cluster",
"host": "rs-proxy",
"host": "rs.iudx.io",
"modules": [
{
"id": "iudx.rs.proxy.apiserver.ApiServerVerticle",
"verticleInstances": 1,
"ssl": true,
"port": 1234,
"production": false,
"keystore": "",
"keystorePassword": ""
"keystorePassword": "",
"rsAdmin": "",
"verticleInstances": 1,
"catServerHost": "",
"catServerPort": 123,
"port": 123
},
{
"id": "iudx.rs.proxy.authenticator.AuthenticationVerticle",
"verticleInstances": 1
"verticleInstances": 1,
"keystore": "",
"keystorePassword": "",
"authServerHost": "",
"testAuthToken": "",
"testExpiredAuthToken": "",
"testResourceID": "",
"resourceServerId": "",
"serverMode": "",
"jwtIgnoreExpiry": true
}, {
"id": "iudx.rs.proxy.cache.CacheVerticle",
"verticleInstances": 1,
"catServerHost": "",
"catServerPort": 0
}
]
}
}
176 changes: 176 additions & 0 deletions iudx.rs.proxy.iml

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
<maven-shade-plugin.version>3.2.4</maven-shade-plugin.version>
<maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
<exec-maven-plugin.version>3.0.0</exec-maven-plugin.version>
<jts2geojson.version>0.16.1</jts2geojson.version>
<maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<maven-pmd-plugin.version>3.14.0</maven-pmd-plugin.version>
Expand Down Expand Up @@ -57,6 +58,12 @@
<artifactId>vertx-codegen</artifactId>
<classifier>processor</classifier>
</dependency>
<!-- for validation of coordinates -->
<dependency>
<groupId>org.wololo</groupId>
<artifactId>jts2geojson</artifactId>
<version>${jts2geojson.version}</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
Expand Down
Binary file added secrets/all-verticles-configs/keystore.jks
Binary file not shown.
Binary file added secrets/all-verticles-configs/keystore.p12
Binary file not shown.
Loading