Skip to content

Commit

Permalink
attac security issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuess committed Oct 31, 2024
1 parent 3831908 commit 2d9a0fd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/acceptance_monolingual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ jobs:

- uses: JarvusInnovations/background-action@v1
name: Start Servers
env:
INDEX_PASSWORD: ${{ secrets.SECRET_INDEX_PASSWORD}}
PLONE_PASSWORD: ${{ secrets.SECRET_PLONE_PASSWORD}}
with:
run: |
make ci-acceptance-backend-start-monolingual &
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/acceptance_multilingual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ jobs:

- uses: JarvusInnovations/background-action@v1
name: Start Servers
env:
INDEX_PASSWORD: ${{ secrets.SECRET_INDEX_PASSWORD}}
PLONE_PASSWORD: ${{ secrets.SECRET_PLONE_PASSWORD}}
with:
run: |
make ci-acceptance-backend-start-multilingual &
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ acceptance-frontend-prod-start-monolingual: ## Start acceptance frontend in prod

.PHONY: acceptance-backend-start-monolingual
acceptance-backend-start-monolingual: ## Start backend acceptance server
export INDEX_PASSWORD=paraDiesli,17
export PLONE_PASSWORD=secret
$(MAKE) -C "./backend/" acceptance-backend-start-monolingual

.PHONY: ci-acceptance-backend-start-monolingual
Expand Down Expand Up @@ -215,6 +217,8 @@ acceptance-frontend-prod-start-multilingual: ## Start acceptance frontend in pro

.PHONY: acceptance-backend-start-multilingual
acceptance-backend-start-multilingual: ## Start backend acceptance server
export INDEX_PASSWORD=paraDiesli,17
export PLONE_PASSWORD=secret
$(MAKE) -C "./backend/" acceptance-backend-start-multilingual

.PHONY: ci-acceptance-backend-start-multilingual
Expand Down
2 changes: 0 additions & 2 deletions backend/dockerfiles/.env
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,13 @@ export INDEX_NAME=plone
export INDEX_OPENSEARCH=1
export INDEX_USE_SSL=1
export INDEX_LOGIN=admin
export INDEX_PASSWORD=paraDiesli,17

export CELERY_BROKER=redis://redis:6379/0
export CELERY_LOGLEVEL=info

export PLONE_SERVICE=http://backend-acceptance:55001
export PLONE_SITE_PREFIX_PATH=plone
export PLONE_USER=admin
export PLONE_PASSWORD=secret

export MAPPINGS_FILE=/configuration/mappings.json
export ANALYSIS_FILE=/configuration/analysis.json
Expand Down

0 comments on commit 2d9a0fd

Please sign in to comment.