forked from cerc-io/testnet-ops
nabarun
18df60a291
Part of [Service Provider setup](https://www.notion.so/Service-provider-setup-a09e2207e1f34f3a847f7ce9713b7ac5) - Added ansible playbooks for: - Adding a new user with passwordless sudo - Configuring DNS records - Setting up the system with required packages and gpg key - Deploying k8s - Setting up container registry - Setting up laconicd and laconic-console - Setting up and starting webapp-deployer-api and webapp-deployer-ui - TODOs: - Mount gpg keys in webapp-deployer-api container Co-authored-by: Adw8 <adwaitgharpure@gmail.com> Reviewed-on: cerc-io/testnet-ops#10
22 lines
584 B
Django/Jinja
22 lines
584 B
Django/Jinja
---
|
|
nginx_packages_intall: false
|
|
nginx_server_name_hash: 64
|
|
nginx_proxy_read_timeout: 1200
|
|
nginx_proxy_send_timeout: 1200
|
|
nginx_proxy_connection_timeout: 75
|
|
|
|
nginx_sites:
|
|
- name: {{ org_id }}-console
|
|
url: {{ org_id }}-console.{{ full_domain }}
|
|
upstream: http://localhost:8080
|
|
template: basic-proxy
|
|
ssl: true
|
|
|
|
- name: {{ org_id }}-daemon
|
|
url: {{ org_id }}-daemon.{{ full_domain }}
|
|
upstream: http://localhost:9473
|
|
configs:
|
|
- rewrite ^/deployer(/.*)? https://webapp-deployer.pwa.{{full_domain}} permanent
|
|
template: websocket-proxy
|
|
ssl: true
|