Recommit for updates in build 28

This commit is contained in:
Jenkins Server
2026-02-24 00:40:01 +01:00
parent a502f0f018
commit b89ff68a02

View File

@@ -884,6 +884,96 @@
</li> </li>
<li>
<span class='name'>ga_use_proxy_protocol</span>
<span class='type'>(<tt>Boolean</tt>)</span>
<em class="default">(defaults to: <tt>false</tt>)</em>
&mdash;
<div class='inline'>
<p>Whether to enable proxy protocol support in Gitea.</p>
</div>
</li>
<li>
<span class='name'>ga_public_url_detection</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;auto&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The method for public URL detection in Gitea. Options are auto, legacy, and none.</p>
</div>
</li>
<li>
<span class='name'>ga_qos_enabled</span>
<span class='type'>(<tt>Boolean</tt>)</span>
<em class="default">(defaults to: <tt>true</tt>)</em>
&mdash;
<div class='inline'>
<p>Whether to enable QoS support in Gitea.</p>
</div>
</li>
<li>
<span class='name'>ga_qos_max_waiting</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;100&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The maximum number of waiting requests for QoS in Gitea.</p>
</div>
</li>
<li>
<span class='name'>ga_qos_target_wait_time</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>&#39;250ms&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>The target wait time for QoS in Gitea.</p>
</div>
</li>
<li> <li>
<span class='name'>ga_admin_allow_create_organization</span> <span class='name'>ga_admin_allow_create_organization</span>
@@ -908,15 +998,6 @@
<pre class="lines"> <pre class="lines">
64
65
66
67
68
69
70
71
72
73 73
74 74
75 75
@@ -997,10 +1078,24 @@
150 150
151 151
152 152
153</pre> 153
154
155
156
157
158
159
160
161
162
163
164
165
166
167</pre>
</td> </td>
<td> <td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 64</span> <pre class="code"><span class="info file"># File 'manifests/params.pp', line 73</span>
class confdroid_gitea::params ( class confdroid_gitea::params (
@@ -1019,6 +1114,11 @@ class confdroid_gitea::params (
Boolean $ga_start_ssh = false, Boolean $ga_start_ssh = false,
String $ga_instance_name = &#39;Your Gitea Instance&#39;, String $ga_instance_name = &#39;Your Gitea Instance&#39;,
String $ga_lfs_jwt_secret = &#39;ChangeMeLFSJWTSecret&#39;, String $ga_lfs_jwt_secret = &#39;ChangeMeLFSJWTSecret&#39;,
Boolean $ga_use_proxy_protocol = false,
String $ga_public_url_detection = &#39;auto&#39;,
Boolean $ga_qos_enabled = true,
String $ga_qos_max_waiting = &#39;100&#39;,
String $ga_qos_target_wait_time = &#39;250ms&#39;,
# database # database
String $ga_db_type = &#39;postgres&#39;, String $ga_db_type = &#39;postgres&#39;,