Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
haproxy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ansible
Roles
haproxy
Compare revisions
9f0356ee40daae9124a5531728c636e56fede6a7 to main
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ansible/roles/haproxy
Select target project
No results found
main
Select Git revision
Branches
main
Swap
Target
ericzillmann/haproxy
Select target project
ansible/roles/haproxy
ericzillmann/haproxy
2 results
9f0356ee40daae9124a5531728c636e56fede6a7
Select Git revision
Branches
2905-regex-redirects-with-domain
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
templates/privatelist.domain.jinja2
+3
-0
3 additions, 0 deletions
templates/privatelist.domain.jinja2
templates/redirect.map.jinja2
+10
-0
10 additions, 0 deletions
templates/redirect.map.jinja2
with
13 additions
and
0 deletions
templates/privatelist.domain.jinja2
0 → 100644
View file @
725e43ef
{% for domain in haproxy_private.domain %}
{{ domain }}
{% endfor %}
This diff is collapsed.
Click to expand it.
templates/redirect.map.jinja2
0 → 100644
View file @
725e43ef
{% for key in (proxy_redirect_maps[item]|default([]))|sort %}
{{ key }} {{ proxy_redirect_maps[item][key] }}
{% endfor %}
{% for host in groups.all|sort %}
{% if hostvars[host].ansible_local is defined and hostvars[host].ansible_local.proxy_redirect_maps is defined %}
{% for key in (hostvars[host].ansible_local.proxy_redirect_maps[item]|default([]))|sort %}
{{ key }} {{ hostvars[host].ansible_local.proxy_redirect_maps[item][key] }}
{% endfor %}
{% endif %}
{% endfor %}
This diff is collapsed.
Click to expand it.
Prev
1
2
Next