Files
cloudypress/Chart/values.yaml
2023-04-26 10:45:40 +02:00

164 lines
3.8 KiB
YAML

# Customer Information
customer:
# Customer Name/identifier
name: mycustomer
# Timezone for customer
timezone: "Europe/Stockholm"
# Package/Resource Settings
package: {}
# Defaults:
# package:
# size: small
# replicas: 1
# cpu:
# avg: 500m
# peak: 1000m
# mem:
# avg: 512Mi
# peak: 1Gi
# disk: 5Gi
# Settings for email sent from site
# default is sending from customer@mail
email: {}
# email:
# forceFromEmail: "user@domain.com"
# forceFromName: "Some Customer"
# allowedDomains:
# - "customerdomainA.se"
# - "customerdomainB.se"
# allowedEmails:
# - "noreply@customerdomainC.com"
# Website Configuration
site:
env: "development"
# The main URL for the website
url: "www.mycustomer.com"
# Additional environment variables to pass to the container
additional_env: {}
# MY_ENV_VAR: "value"
# Create sites with another main domain for WP,
# but the rest of the components named according to site-tld
overrideMainUrl: ""
# Whether to keep plugins and Wordpress updated
autoUpdate: 'true'
# Storage settings
storage: {}
# Defaults:
# storage:
# cloud:
# class: "premium01"
# type: "Premium_LRS"
# container: "www-mycustomer-com"
# folders:
# - cloudPath: "uploads"
# localPath: "/app/web/app/uploads"
# - cloudyPath: "gallery"
# localPath: "/app/web/app/uploads"
# Initialization Settings
init:
# The composer package that contains the site
composerPackage: "somens/mycustomer-app"
# The name of the theme which the composer package refers to
themeName: "mycustomer-app-theme"
# If needed, force a change of the theme folder name to conform with site requirements
# forceThemeName: ""
# Optional: Import content to wp-content directory from zip file
content: {}
# content:
# import: 'true'
# url: "https://mycustomer.com/wp-content-data.zip"
# Optional: Import database from URL
database: {}
# database:
# import: 'true'
# force: false
# url: "https://www.mycustomer.com/mysqldump.sql"
# Settings for the webroot (used by Nginx)
webroot:
path: "/app/web"
indexes: "index.php index.html index.htm"
# Additional ingress names for the site
# Default ingress names are (customer domain: testsite.com, domain = testsite, tld = com):
# - <domain>.<tld>
# - www.<domain>.<tld>
# - <domain>-<tld>.eu.cust.azurecd.net
# - www-<domain>-<tld>.eu.cust.azurecd.net
additionalIngressNames: []
# Global configuration
global:
# Which image to use for the web server
serverImage: ghcr.io/cloudynes/php-unit
# Which image to use for the initialization
initImage: ghcr.io/cloudynes/php-cd
# The tag to use for the above images
imageTag: "8.0"
# The database instance where the database will be provisioned
dbInstance: "kincaid"
php:
listenAddress: "127.0.0.1:8123"
listenBacklog: "511"
pmMode: "ondemand"
pmMaxChildren: "100"
pmProcessIdle: "30s"
pmMaxRequests: "1000"
limitExtensions: ".php"
exposePHP: "Off"
shortOpenTag": "Off"
disableFunctions: "exec,passthru,shell_exec,system,proc_open,popen,show_source"
logErrors: "On"
adminValues:
memory_limit: "512M"
upload_max_filesize: "512M"
post_max_size: "512M"
max_execution_time: "300"
max_input_time: "300"
nginx:
workerConnections: "1024"
keepaliveTimeout: "61"
sendfile: "off"
tcpNodelay: "on"
absoluteRedirects: "off"
fcgiBufferSize: "128k"
fcgiBuffers: "4 256k"
fcgiBusyBufferSize: "256k"
fcgiReadTimeout: "300"
globalAdditions: ""
eventsAdditions: ""
httpAdditions: ""
serverAdditions: ""
rootLocationAdditions: ""
phpLocationAdditions: ""