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

Release GN v4.4.0 #107

Merged
merged 24 commits into from
Oct 25, 2023
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0053807
GN v4.4.0
juanluisrp Jul 11, 2023
c4e01cb
Update
fxprunayre Jul 21, 2023
71cad20
Move env to variable for future easier configuration of multiple inst…
fxprunayre Aug 31, 2023
f21fd8c
Jetty / Increase max form keys
fxprunayre Sep 7, 2023
9d1cb4f
Jetty config / Allows larger form.
fxprunayre Sep 11, 2023
8bf8eda
Java options to be able to return metrics in Java 11.
fxprunayre Sep 11, 2023
da562a5
Clustering / Add instruction for testing and add a simple load balancer.
fxprunayre Sep 11, 2023
4f6488d
Nginx / Add body size parameter and fix hard coded scheme.
fxprunayre Sep 11, 2023
8c37971
Move to traefik.
fxprunayre Sep 12, 2023
d64c0f1
Add health check.
fxprunayre Sep 13, 2023
df6a147
Readme update for traefik change.
fxprunayre Sep 13, 2023
fdf9372
Monitoring / Load traefik log using filebeat. Removing Apache and Ngi…
fxprunayre Sep 13, 2023
724036d
Update multiple instances limitations.
fxprunayre Sep 13, 2023
cd6af05
Jetty / Update version and fix sending mail on java 11.
fxprunayre Sep 18, 2023
ad067fd
Add timezone config and use separate schemapublication dir (avoid issue
fxprunayre Sep 21, 2023
12bee86
Update README.md
fxprunayre Sep 25, 2023
f768ddd
Update README.md
fxprunayre Sep 25, 2023
9f06cdd
Update README.md
fxprunayre Sep 25, 2023
b249c6e
Fix typo in variable expansion
juanluisrp Sep 28, 2023
410cd70
Update MD5 for 4.4.0
fxprunayre Oct 19, 2023
0b9ff2f
When building image, set image name for docker compose to find it.
fxprunayre Oct 19, 2023
b13cc6f
Add proxy variables example
fxprunayre Oct 20, 2023
09af312
Update 4.4.0/README.md
fxprunayre Oct 20, 2023
a2e70d7
Fix Markdown warnings
juanluisrp Oct 25, 2023
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
16 changes: 16 additions & 0 deletions 4.4.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,22 @@ To configure the default application language and bypass browser language detect
-Dlanguage.forceDefault=true
```

## Running behind a proxy

If the catalogue needs to use proxy for HTTP calls, use Java environement variables:
fxprunayre marked this conversation as resolved.
Show resolved Hide resolved

```
-Dhttp.proxyHost=<proxyAddress>
-Dhttp.proxyPort=<proxyPort>
-Dhttps.proxyHost=<proxyAddress>
-Dhttps.proxyPort=<proxyPort>
-Dhttp.nonProxyHosts=<nonProxyHosts>
-Dhttp.proxyUser=<proxyUser>
-Dhttp.proxyPassword=<proxyPassword>
```



## Clustering (experimental)

The clustering mode allows to start more than one GeoNetwork instance.
Expand Down