Revert "Add handles to ingress role"

This reverts commit 0586eb5ce9.
This commit is contained in:
Salt 2021-10-02 21:48:37 -05:00
parent e6b2c8b0a6
commit 51737a53dc
2 changed files with 0 additions and 13 deletions

View File

@ -45,10 +45,6 @@ ingress_tls_prefer_server_ciphers: "off"
# location = /.well-known/caldav { return 301 /remote.php/dav/; }
# location ^~ /.well-known { return 301 /index.php$uri; }
# try_files $uri $uri/ =404;
# handles:
# - handle: "^~ /.well-known/foo"
# contents: |
# respond `bar`
# - name: redirect.example.com
# directives:
# # NOTE: Do NOT suffix with a semicolon; that gets added for you

View File

@ -52,15 +52,6 @@ server {
{{ location.contents }}
}
{% endfor %}
{% endif %}
{% if server.handles is defined %}
# Extra manually-defined handlers
{% for handle in server.handles %}
handle {{ handle.handle }} {
{{ handle.contents }}
}
{% endfor %}
{% endif %}
resolver {{ ingress_resolver }};