talas-group/04_INFRA_DEPLOIEMENT/Ansible/roles/postgres-explain-visualizer/defaults/main.yml
senke 66471934af Initial commit: Talas Group project management & documentation
Knowledge base of ~80+ markdown files across 14 domains (00-13),
Logseq graph, hardware design files (KiCAD), infrastructure configs,
and talas-wiki static site.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-04 20:10:41 +02:00

40 lines
815 B
YAML

---
# file: roles/postgres-explain-visualizer/defaults/main.yml
pev_update_now: False
pg_users:
- name: pev
password: auto
attrib: LOGIN
pg_databases:
- name: pev
owner: pev
httpd_vhosts:
pev:
template: "proxy.conf"
ssl: true
servername: "{{ pev_fqdn }}"
serveradmin: "noc@cosium.com"
proxytarget: "http://localhost:8001/"
raw_config: |
Alias /static /opt/pev/app/static
<Directory /opt/pev/app/static>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Require all granted
</Directory>
<Location /static>
ProxyPass !
</Location>
RequestHeader set "X-Forwarded-Proto" expr=%{REQUEST_SCHEME}
httpd_module_list:
- ssl
- proxy
- proxy_http