Compare commits

..

No commits in common. "main" and "main" have entirely different histories.
main ... main

8 changed files with 7 additions and 56 deletions

View File

@ -6,7 +6,7 @@ steps:
image: git.coopcloud.tech/coop-cloud/stack-ssh-deploy:latest
settings:
host: swarm-test.autonomic.zone
stack: rallly
stack: {{ .Name }}
generate_secrets: true
purge: true
deploy_key:
@ -14,13 +14,9 @@ steps:
networks:
- proxy
environment:
DOMAIN: rallly.swarm-test.autonomic.zone
STACK_NAME: rallly
DOMAIN: {{ .Name }}.swarm-test.autonomic.zone
STACK_NAME: {{ .Name }}
LETS_ENCRYPT_ENV: production
SECRET_SECRET_KEY_VERSION: v1
SECRET_DB_PASSWORD_VERSION: v1
SECRET_SMTP_PWD_VERSION: v1
APP_ENTRYPOINT_VERSION: v1
trigger:
branch:
- main

View File

@ -7,8 +7,6 @@ DOMAIN=rallly.example.com
## Domain aliases
#EXTRA_DOMAINS=', `www.rallly.example.com`'
COMPOSE_FILE="compose.yml"
LETS_ENCRYPT_ENV=production
SECRET_SECRET_KEY_VERSION=v1
@ -20,10 +18,3 @@ SMTP_HOST=mail.example.com
SMTP_PORT=465
SMTP_SECURE=true
SMTP_USER=noreply@example.com
#COMPOSE_FILE="$COMPOSE_FILE:compose.oidc.yml"
#OIDC_ENABLED=1
#OIDC_NAME= #The user-facing name of your provider as it will be shown on the login page
#OIDC_DISCOVERY_URL= #URL of the .well-known/openid-configuration endpoint for your OIDC provider
#OIDC_CLIENT_ID=
#SECRET_OIDC_CLIENT_SECRET_VERSION=v1

View File

@ -1 +1 @@
export APP_ENTRYPOINT_VERSION=v3
export APP_ENTRYPOINT_VERSION=v2

View File

@ -1,11 +0,0 @@
authentik:
env:
OIDC_NAME: "Authentik"
OIDC_DISCOVERY_URL: "https://authentik.example.com/application/o/rallly/.well-known/openid-configuration"
OIDC_CLIENT_ID: rallly
uncomment:
- compose.oidc.yml
- SECRET_OIDC_CLIENT_SECRET_VERSION
- OIDC_ENABLED
shared_secrets:
rallly_secret: oidc_client_secret

View File

@ -1,16 +0,0 @@
---
version: "3.8"
services:
app:
secrets:
- oidc_client_secret
environment:
- OIDC_ENABLED
- OIDC_NAME
- OIDC_DISCOVERY_URL
- OIDC_CLIENT_ID
secrets:
oidc_client_secret:
name: ${STACK_NAME}_oidc_client_secret_${SECRET_OIDC_CLIENT_SECRET_VERSION}
external: true

View File

@ -3,8 +3,7 @@ version: "3.8"
services:
app:
image: lukevella/rallly:3.5.1
hostname: 0.0.0.0
image: lukevella/rallly:2.11.1
networks:
- proxy
- internal
@ -17,9 +16,7 @@ services:
environment:
- POSTGRES_PASSWORD_FILE=/run/secrets/db_password
- DATABASE=rallly_db:5432/db
- NEXT_PUBLIC_BASE_URL=https://${DOMAIN}
- NEXT_PUBLIC_APP_BASE_URL=https://${DOMAIN}
- NEXTAUTH_URL=$NEXT_PUBLIC_BASE_URL
- NEXT_PUBLIC_BASE_URL=${DOMAIN}
- SECRET_PASSWORD_FILE=/run/secrets/secret_key
- SUPPORT_EMAIL
- SMTP_HOST
@ -45,7 +42,7 @@ services:
- "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.SSLHost=${DOMAIN}"
- "coop-cloud.${STACK_NAME}.version=0.5.3+3.5.1"
- "coop-cloud.${STACK_NAME}.version=0.4.1+2.11.1"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000"]
interval: 30s

View File

@ -1,9 +1,5 @@
#!/bin/bash
{{ if eq (env "OIDC_ENABLED") "1" }}
export OIDC_CLIENT_SECRET=$(cat /run/secrets/oidc_client_secret)
{{ end }}
set -eu
file_env() {
@ -30,7 +26,6 @@ file_env() {
file_env "SECRET_PASSWORD"
file_env "SMTP_PWD"
file_env "POSTGRES_PASSWORD"
file_env "OIDC_CLIENT_SECRET"
export DATABASE_URL=postgres://postgres:$POSTGRES_PASSWORD@$DATABASE

View File

@ -1 +0,0 @@
Rallly and recipe now support oidc. But you need to be registered to create polls now.