fix error 400 - bad request, changed http to https
This commit is contained in:
parent
b461d36f86
commit
b0fc535cfe
2
.env
2
.env
|
@ -33,7 +33,7 @@ TEST_CKAN_DATASTORE_WRITE_URL=postgresql://ckan:ckan@db/datastore_test
|
||||||
TEST_CKAN_DATASTORE_READ_URL=postgresql://datastore_ro:datastore@db/datastore_test
|
TEST_CKAN_DATASTORE_READ_URL=postgresql://datastore_ro:datastore@db/datastore_test
|
||||||
|
|
||||||
# Dev settings
|
# Dev settings
|
||||||
USE_HTTPS_FOR_DEV=false
|
USE_HTTPS_FOR_DEV=true
|
||||||
|
|
||||||
# CKAN core
|
# CKAN core
|
||||||
CKAN_VERSION=2.10.0
|
CKAN_VERSION=2.10.0
|
||||||
|
|
|
@ -29,7 +29,7 @@ services:
|
||||||
- ./src:/srv/app/src_extensions
|
- ./src:/srv/app/src_extensions
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "wget", "-qO", "/dev/null", "http://localhost:5000"]
|
test: ["CMD", "wget", "-qO", "/dev/null", "https://localhost:5000"]
|
||||||
|
|
||||||
datapusher:
|
datapusher:
|
||||||
image: ckan/ckan-base-datapusher:${DATAPUSHER_VERSION}
|
image: ckan/ckan-base-datapusher:${DATAPUSHER_VERSION}
|
||||||
|
|
Loading…
Reference in New Issue