60 lines
1.2 KiB
YAML
60 lines
1.2 KiB
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: ghost-config-prod
|
|
type: Opaque
|
|
stringData:
|
|
config.production.json: |-
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: ghost-config-prod
|
|
type: Opaque
|
|
stringData:
|
|
config.production.json: |-
|
|
{
|
|
"url": "https://adztech.duckdns.org",
|
|
"admin": {
|
|
"url": "https://adztech.duckdns.org"
|
|
},
|
|
"server": {
|
|
"port": 2368,
|
|
"host": "0.0.0.0"
|
|
},
|
|
"mail": {
|
|
"transport": "SMTP",
|
|
"from": "user@server.com",
|
|
"options": {
|
|
"service": "Google",
|
|
"host": "smtp.gmail.com",
|
|
"port": 465,
|
|
"secure": true,
|
|
"auth": {
|
|
"user": "user@server.com",
|
|
"pass": "passsword"
|
|
}
|
|
}
|
|
},
|
|
"logging": {
|
|
"transports": [
|
|
"stdout"
|
|
]
|
|
},
|
|
"database": {
|
|
"client": "mysql",
|
|
"connection":
|
|
{
|
|
"host": "192.168.3.191",
|
|
"user": "ghost",
|
|
"password": "ghost",
|
|
"database": "ghost",
|
|
"port": "30031"
|
|
}
|
|
},
|
|
"debug": true,
|
|
"process": "local",
|
|
"paths": {
|
|
"contentPath": "/var/lib/ghost/content"
|
|
}
|
|
}
|
|
|