GeoNode / geonode-project

A django template project for creating custom GeoNode projects.
http://geonode.org
79 stars 173 forks source link

Fix settings in the geofence-datasource-ovr.properties when building the Docker image of the Geoserver GeoNode #437

Closed afabiani closed 1 year ago

afabiani commented 1 year ago

The user name on the https://github.com/GeoNode/geonode-project/blob/master/docker/geoserver/templates/geofence/geofence-datasource-ovr.properties.j2 is wrongly assigned to the GEONODE_GEODATABASE

geofenceDataSource.username={{ GEONODE_GEODATABASE }}
geofenceDataSource.password={{ GEONODE_GEODATABASE_PASSWORD }}

it should be assigned to the GEONODE_GEODATABASE_USER instead

geofenceDataSource.username={{ GEONODE_GEODATABASE_USER }}
geofenceDataSource.password={{ GEONODE_GEODATABASE_PASSWORD }}