Skip to content

Commit

Permalink
fix: return env file to original state
Browse files Browse the repository at this point in the history
  • Loading branch information
jdonlucas committed Oct 31, 2023
1 parent c36a21f commit d41594b
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ FORCE_REINIT=false
INVOKE_LOG_STDOUT=true

# LANGUAGE_CODE=pt
# LANGUAGES=(('en','English'),('pt','Portuguese'))
# LANGUAGES=(('en-us','English'),('it-it','Italiano'))

DJANGO_SETTINGS_MODULE=geonode.settings
GEONODE_INSTANCE_NAME=geonode
Expand Down Expand Up @@ -45,7 +45,7 @@ BROKER_URL=amqp://guest:guest@rabbitmq:5672/
CELERY_BEAT_SCHEDULER=celery.beat:PersistentScheduler
ASYNC_SIGNALS=True

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

ALLOWED_HOSTS=['django', '*']

Expand All @@ -62,12 +62,12 @@ HAYSTACK_SEARCH_RESULTS_PER_PAGE=200
# nginx
# HTTPD Server
# #################
GEONODE_LB_HOST_IP=localhost
GEONODE_LB_HOST_IP=geonode.centrogeo.org.mx
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=localhost
HTTP_HOST=geonode.centrogeo.org.mx
HTTPS_HOST=

HTTP_PORT=80
Expand All @@ -87,8 +87,8 @@ RESOLVER=127.0.0.11
# #################
# geoserver
# #################
GEOSERVER_WEB_UI_LOCATION=http://localhost/geoserver/
GEOSERVER_PUBLIC_LOCATION=http://localhost/geoserver/
GEOSERVER_WEB_UI_LOCATION=https://geonode.centrogeo.org.mx/geoserver/
GEOSERVER_PUBLIC_LOCATION=https://geonode.centrogeo.org.mx/geoserver/
GEOSERVER_LOCATION=http://geoserver:8080/geoserver/
GEOSERVER_ADMIN_USER=admin
GEOSERVER_ADMIN_PASSWORD=geoserver
Expand All @@ -98,6 +98,8 @@ OGC_REQUEST_MAX_RETRIES=1
OGC_REQUEST_BACKOFF_FACTOR=0.3
OGC_REQUEST_POOL_MAXSIZE=10
OGC_REQUEST_POOL_CONNECTIONS=10
GEONODE_DB_CONN_MAX_AGE=0
GEONODE_DB_CONN_TOUT=5

# Java Options & Memory
ENABLE_JSONP=true
Expand Down Expand Up @@ -138,9 +140,9 @@ DEFAULT_ANONYMOUS_VIEW_PERMISSION=True
DEFAULT_ANONYMOUS_DOWNLOAD_PERMISSION=True

# Users Registration
ACCOUNT_OPEN_SIGNUP=True
ACCOUNT_OPEN_SIGNUP=False
ACCOUNT_EMAIL_REQUIRED=True
ACCOUNT_APPROVAL_REQUIRED=False
ACCOUNT_APPROVAL_REQUIRED=True
ACCOUNT_CONFIRM_EMAIL_ON_GET=False
ACCOUNT_EMAIL_VERIFICATION=none
ACCOUNT_EMAIL_CONFIRMATION_EMAIL=False
Expand Down Expand Up @@ -211,7 +213,7 @@ ADMIN_MODERATE_UPLOADS=False
POSTGRESQL_MAX_CONNECTIONS=200

# Upload Size Limiting
DEFAULT_MAX_UPLOAD_SIZE=5368709120
DEFAULT_MAX_UPLOAD_SIZE=5368709120 #5GB
DEFAULT_MAX_PARALLEL_UPLOADS_PER_USER=100

# LDAP
Expand All @@ -224,7 +226,6 @@ LDAP_USER_SEARCH_FILTERSTR=(&(uid=%(user)s)(objectClass=person))
LDAP_GROUP_SEARCH_DN=cn=groups,dc=ad,dc=example,dc=org
LDAP_GROUP_SEARCH_FILTERSTR=(|(cn=abt1)(cn=abt2)(cn=abt3)(cn=abt4)(cn=abt5)(cn=abt6))
LDAP_GROUP_PROFILE_MEMBER_ATTR=uniqueMember

# CELERY

# expressed in KB
Expand Down

0 comments on commit d41594b

Please sign in to comment.