mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Addapt pgadmin variables
This commit is contained in:
@@ -12,6 +12,10 @@ The role ensures consistent deployments, full automation, and secure configurati
|
||||
|
||||
To automate the deployment of **secure, extensible, and production-ready Nextcloud instances** using Docker and Ansible.
|
||||
|
||||
## User Guide
|
||||
|
||||
The Nextcloud User Guide you will find [here](https://docs.nextcloud.com/server/latest/user_manual/en/).
|
||||
|
||||
## Features
|
||||
|
||||
- Dockerized Nextcloud (PHP-FPM, Nginx, Cron, Redis)
|
||||
|
9
roles/docker-oauth2-proxy/Setup.md
Normal file
9
roles/docker-oauth2-proxy/Setup.md
Normal file
@@ -0,0 +1,9 @@
|
||||
# Setup
|
||||
|
||||
## Cookie Secret
|
||||
|
||||
To generate a cookie secret execute:
|
||||
|
||||
```bash
|
||||
ansible-vault encrypt_string "$(openssl rand -hex 16)"
|
||||
```
|
@@ -1,5 +1,5 @@
|
||||
# Configuration @see https://hub.docker.com/r/dpage/pgadmin4
|
||||
# Configuration @see https://www.pgadmin.org/docs/pgadmin4/latest/container_deployment.html
|
||||
|
||||
PGADMIN_DEFAULT_EMAIL={{ applications.pgadmin.default_email }}
|
||||
PGADMIN_DEFAULT_PASSWORD={{ applications.pgadmin.default_password }}
|
||||
PGADMIN_DEFAULT_EMAIL={{ applications[application_id].users.administrator.email }}
|
||||
PGADMIN_DEFAULT_PASSWORD={{ applications.[application_id].users.administrator.password }}
|
||||
PGADMIN_DISABLE_POSTFIX=True
|
@@ -1,7 +1,7 @@
|
||||
# Configuration @see https://hub.docker.com/_/phpmyadmin
|
||||
|
||||
PMA_HOST= central-mariadb
|
||||
{% if applications.phpmyadmin.autologin | bool %}
|
||||
{% if applications.[application_id].autologin | bool %}
|
||||
PMA_USER= root
|
||||
PMA_PASSWORD= "{{central_mariadb_root_password}}"
|
||||
{% endif %}
|
Reference in New Issue
Block a user