summaryrefslogtreecommitdiffstats
path: root/roles/cgit/meta/argument_specs.yml
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-07-16 14:39:19 +0200
committerAhmed Abdelhalim <[email protected]>2026-07-16 17:02:52 +0200
commit756dc388bedf97b68449e919a6730788f730c7b8 (patch)
treece823916a242ea9d44194bbaf6da04d1596b935d /roles/cgit/meta/argument_specs.yml
parentf79d1d829cdafebb5dbcd658d31ae89f2e53ce73 (diff)
Refactor pve cgit to use generic proxy
This is refactoring the PoC for deploying cgit on pve, to now move to a more standard deployment with dedicated agnonstic proxy role/container
Diffstat (limited to 'roles/cgit/meta/argument_specs.yml')
-rw-r--r--roles/cgit/meta/argument_specs.yml10
1 files changed, 7 insertions, 3 deletions
diff --git a/roles/cgit/meta/argument_specs.yml b/roles/cgit/meta/argument_specs.yml
index e0fa14d5..9dbe28b1 100644
--- a/roles/cgit/meta/argument_specs.yml
+++ b/roles/cgit/meta/argument_specs.yml
@@ -8,8 +8,8 @@ argument_specs:
default: "git.example.com"
cgit_port:
type: "int"
- description: "Port nginx listens on"
- default: 80
+ description: "Port lighttpd listens on internally"
+ default: 3000
cgit_repos_dir:
type: "str"
description: "Directory containing bare git repositories"
@@ -25,8 +25,12 @@ argument_specs:
cgit_clone_prefix:
type: "str"
description: "Clone URL prefix shown in cgit UI"
- default: "https://{{ cgit_hostname }}"
+ default: "ssh://{{ cgit_ssh_user }}@{{ cgit_hostname }}"
cgit_ssh_user:
type: "str"
description: "System user for SSH git push access"
default: "git"
+ cgit_proxy_host:
+ type: "str"
+ description: "Inventory hostname of the proxy container to deploy vhost on"
+ default: "proxy.home.arpa"