140 lines
3.0 KiB
YAML
140 lines
3.0 KiB
YAML
customer:
|
|
# The (dns-compliant) customer name (Required)
|
|
# name: dns-compliant-customer-name
|
|
|
|
# The legal name of the customer (Required)
|
|
# legalName: Customer Name Ltd
|
|
|
|
# The legal ID of the customer (Required)
|
|
# legalId: 112233-4455
|
|
|
|
# The timezone for the customer
|
|
timezone: "Europe/Stockholm"
|
|
|
|
email:
|
|
# Force a given sender email
|
|
# forceSender: "example@email.com"
|
|
|
|
# Set a default sender/display name
|
|
# defaultSender: "customer-noreply@v3.nu"
|
|
# defaultSenderName: "Customer Name"
|
|
|
|
# Specify allowed domains/emails to use as senders
|
|
# domains:
|
|
# - customer.tld
|
|
# emails:
|
|
# - mail@customer.tld
|
|
# Set the SMTP server to use for the site
|
|
smtpServer: smtp2go
|
|
|
|
# Database configuration
|
|
database:
|
|
# Database server to use
|
|
server: kincaid
|
|
|
|
# Import database from file if not already imported
|
|
import: false
|
|
importPath: "/full-cloud/import.sql"
|
|
overwriteExisting: false
|
|
|
|
# Storage Settings
|
|
storage:
|
|
# The storage class used for the cloud part of the storage
|
|
# Default: premium01
|
|
class: "premium01"
|
|
|
|
# The storage type to use for the site
|
|
# Default: Premium_LRS
|
|
type: "Premium_LRS"
|
|
|
|
# The storage container to use for the site (REQUIRED)
|
|
# Default: <domain>-<tld>
|
|
# container: "company-tld"
|
|
|
|
# Skip WPC Auto-registration
|
|
# Default: false
|
|
# skipWPCRegistration: false
|
|
|
|
# WP Content Folders
|
|
wpContent:
|
|
- uploads
|
|
- languages
|
|
|
|
additionalMounts: {}
|
|
# - cloudPath: uploads
|
|
# localPath: /app/web/app/uploads
|
|
|
|
site:
|
|
# container_base: debian
|
|
# The name of the repository/composerpackage/dockerimage
|
|
# Default: domain.replace('.', '-')
|
|
# name: "customer-tld"
|
|
|
|
# Tag of the container to deploy
|
|
# imageTag: "latest"
|
|
|
|
# The primary domain/TLD where the site will be available
|
|
# domain: customer.tld
|
|
|
|
# The main url (subdomain) for the site
|
|
# Only needed if it differs from the domain
|
|
# ex.
|
|
# redirectDomain: tempdomain.customer.tld
|
|
|
|
# Additional ingress domains that should all
|
|
# point to the same site
|
|
# Defaults are:
|
|
# - <domain>.<tld>
|
|
# - www.<domain>.<tld>
|
|
# - <domain>-<tld>.eu.cust.azurecd.net
|
|
# - www-<domain>-<tld>.eu.cust.azurecd.net
|
|
additionalIngressDomains: []
|
|
|
|
# PHP Version
|
|
phpVersion: "8.0"
|
|
|
|
# Set environment (production/test/staging)
|
|
# Default: production
|
|
environment: production
|
|
|
|
# Additional env vars
|
|
# additionalEnv:
|
|
# MY_ENV_VAR: "value"
|
|
additionalEnv: {}
|
|
|
|
# Enable the route for trying .webp files before images
|
|
enableWebpRoute: "true"
|
|
|
|
# Enable the automatic conversion of WebP images
|
|
enableWebpConversion: "true"
|
|
|
|
# The resource limits for the site
|
|
resources:
|
|
replicas: 1
|
|
php:
|
|
memory: 512M
|
|
post: 512M
|
|
upload: 512M
|
|
inputTime: "300"
|
|
executionTime: "300"
|
|
cpu:
|
|
avg: 500m
|
|
peak: 1000m
|
|
mem:
|
|
avg: 256Mi
|
|
peak: 512Mi
|
|
disk: 5Gi
|
|
|
|
# Log Errors
|
|
logErrors: "1"
|
|
|
|
# Display Errors
|
|
displayErrors: "0"
|
|
|
|
# advanced:
|
|
# php:
|
|
# displayErrors: "0"
|
|
# logErrors: "1"
|
|
# additionalAdminValues: {}
|
|
|