Compare commits

..

No commits in common. "49a25fff4106c38bd24eb002b71a9c70b4f632b4" and "01337c1e84dfc1309793ca3f851e5fc8a8addfb2" have entirely different histories.

2 changed files with 5 additions and 7 deletions

View File

@ -53,7 +53,7 @@ job "gitea" {
driver = "docker"
config {
image = "gitea/gitea:1.21.7"
image = "gitea/gitea:1.21.1"
ports = ["ingress"]
}

View File

@ -1,8 +1,6 @@
# Listening Domain
locals {
SUBDOMAIN = "penpot." // End with dot or leave blamk for root domain
DOMAIN = "example.local"
TRAEFIK_DOMAIN = "${local.SUBDOMAIN}${local.DOMAIN}"
TRAEFIK_DOMAIN = "penpot.example.local"
}
# Application routing environment variables
@ -10,7 +8,7 @@ locals {
PENPOT_PUBLIC_URI = "https://${local.TRAEFIK_DOMAIN}"
PENPOT_BACKEND_URI = "http://127.0.0.1:6060"
PENPOT_EXPORTER_URI = "http://127.0.0.1:6061"
PENPOT_FLAGS = "enable-smtp enable-registration enable-login-with-password enable-demo-users"
PENPOT_FLAGS = "enable-smtp enable-registration enable-login-with-password enable-prepl-server enable-demo-users"
PENPOT_SECRET_KEY = "op://InfraSecrets/7hbsxng22unjqc4wkj62qniu2u/credential" # Try running `openssl rand -hex 32` to generate a random secret key
PENPOT_DATABASE_URI = "postgresql://127.0.0.1:5432/penpot"
PENPOT_DATABASE_USERNAME = "op://InfraSecrets/Postgres - Penpot User/username"
@ -33,8 +31,8 @@ locals {
# SMTP environment variables
locals {
PENPOT_SMTP_DEFAULT_FROM = "no-reply+penpot@${local.DOMAIN}"
PENPOT_SMTP_DEFAULT_REPLY_TO = "no-reply+penpot@${local.DOMAIN}"
PENPOT_SMTP_DEFAULT_FROM = "no-reply+penpot@example.local"
PENPOT_SMTP_DEFAULT_REPLY_TO = "no-reply+penpot@example.local"
PENPOT_SMTP_HOST = "127.0.0.1"
PENPOT_SMTP_PORT = "1025"
PENPOT_SMTP_USERNAME = ""