Skip to content

Commit

Permalink
fix: issues with geonode libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
jdonlucas committed Aug 23, 2024
1 parent dc00307 commit 19176c4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ BROKER_URL=amqp://guest:guest@rabbitmq:5672/
CELERY_BEAT_SCHEDULER=celery.beat:PersistentScheduler
ASYNC_SIGNALS=True

SITEURL=https://geonode.centrogeo.org.mx
SITEURL=http://localhost

ALLOWED_HOSTS=['django', '*']

Expand All @@ -62,12 +62,12 @@ HAYSTACK_SEARCH_RESULTS_PER_PAGE=200
# nginx
# HTTPD Server
# #################
GEONODE_LB_HOST_IP=geonode.centrogeo.org.mx
GEONODE_LB_HOST_IP=localhost
GEONODE_LB_PORT=80

# IP or domain name and port where the server can be reached on HTTPS (leave HOST empty if you want to use HTTP only)
# port where the server can be reached on HTTPS
HTTP_HOST=geonode.centrogeo.org.mx
HTTP_HOST=localhost
HTTPS_HOST=

HTTP_PORT=80
Expand All @@ -87,8 +87,8 @@ RESOLVER=127.0.0.11
# #################
# geoserver
# #################
GEOSERVER_WEB_UI_LOCATION=https://geonode.centrogeo.org.mx/geoserver/
GEOSERVER_PUBLIC_LOCATION=https://geonode.centrogeo.org.mx/geoserver/
GEOSERVER_WEB_UI_LOCATION=http://localhost/geoserver/
GEOSERVER_PUBLIC_LOCATION=http://localhost/geoserver/
GEOSERVER_LOCATION=http://geoserver:8080/geoserver/
GEOSERVER_ADMIN_USER=admin
GEOSERVER_ADMIN_PASSWORD=geoserver
Expand Down
3 changes: 1 addition & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ services:
# Celery worker that executes celery tasks created by Django.
celery:
<< : *default-common-django
image: geonode/geonode:4.0
container_name: celery4${COMPOSE_PROJECT_NAME}
depends_on:
- django
Expand Down Expand Up @@ -89,7 +88,7 @@ services:

# Geoserver backend
geoserver:
image: geonode/geoserver:2.23.0
image: geonode/geoserver:2.23.3
container_name: geoserver4${COMPOSE_PROJECT_NAME}
healthcheck:
test: "curl --fail --silent --write-out 'HTTP CODE : %{http_code}\n' --output /dev/null http://127.0.0.1:8080/geoserver/ows"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ django-bootstrap3-datetimepicker-2==2.8.3

# storage manager dependencies
django-storages==1.13.2
dropbox==11.36.0
dropbox==11.36.2
google-cloud-storage==2.9.0
google-cloud-core==2.3.2
boto3==1.26.137
Expand Down

0 comments on commit 19176c4

Please sign in to comment.