Compare commits

..

No commits in common. "main" and "0.2.1+5.82.0-wordpress-php8.1" have entirely different histories.

4 changed files with 4 additions and 3 deletions

View File

@ -19,6 +19,9 @@
* `abra app new civicrm-wordpress` * `abra app new civicrm-wordpress`
* `abra app config <app-name>` * `abra app config <app-name>`
SMTP:
* Make sure to configure Traefik to support SMTP
Authentik integration: Authentik integration:
* When configuring, uncomment `COMPOSE_FILE`, `OPEN_ID_CLIENT_ID`, `SECRET_OPEN_ID_CLIENT_SECRET_VERSION`, and `AUTHENTIK_DOMAIN` * When configuring, uncomment `COMPOSE_FILE`, `OPEN_ID_CLIENT_ID`, `SECRET_OPEN_ID_CLIENT_SECRET_VERSION`, and `AUTHENTIK_DOMAIN`
* To configure your Authentik deployment, follow the guide at [`docs.goauthentik.io/integrations/services/wordpress`](https://docs.goauthentik.io/integrations/services/wordpress/). * To configure your Authentik deployment, follow the guide at [`docs.goauthentik.io/integrations/services/wordpress`](https://docs.goauthentik.io/integrations/services/wordpress/).

View File

@ -61,7 +61,7 @@ services:
#- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect" #- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
#- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true" #- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
#- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}" #- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
- "coop-cloud.${STACK_NAME}.version=0.3.0+5.82.0-wordpress-php8.1" - "coop-cloud.${STACK_NAME}.version=0.2.1+5.82.0-wordpress-php8.1"
- "backupbot.backup=true" - "backupbot.backup=true"
- "backupbot.backup.path=/var/www/html/wp-content/uploads" - "backupbot.backup.path=/var/www/html/wp-content/uploads"
healthcheck: healthcheck:

View File

@ -110,7 +110,6 @@ if [ "$OPEN_ID_CLIENT_ID" != "unused" ]; then
echo "============ Configuring OpenId Connect ============" echo "============ Configuring OpenId Connect ============"
su civicrm -c "wp option patch update openid_connect_generic_settings client_id $OPEN_ID_CLIENT_ID" su civicrm -c "wp option patch update openid_connect_generic_settings client_id $OPEN_ID_CLIENT_ID"
su civicrm -c "wp option patch update openid_connect_generic_settings client_secret $OPEN_ID_CLIENT_SECRET" su civicrm -c "wp option patch update openid_connect_generic_settings client_secret $OPEN_ID_CLIENT_SECRET"
su civicrm -c "wp option patch update openid_connect_generic_settings link_existing_users 1"
AUTHENTIK_DOMAIN="${AUTHENTIK_DOMAIN:-unused}" AUTHENTIK_DOMAIN="${AUTHENTIK_DOMAIN:-unused}"
if [ "$AUTHENTIK_DOMAIN" != "unused" ]; then if [ "$AUTHENTIK_DOMAIN" != "unused" ]; then

View File

@ -1 +0,0 @@
openid connect link existing users by default