summaryrefslogtreecommitdiff
path: root/data/templates/https/nginx.default.tmpl
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2021-12-13 11:47:12 -0600
committerGitHub <noreply@github.com>2021-12-13 11:47:12 -0600
commit88c38dda4b872d2108156b56538302f4c5058a7e (patch)
tree61022da45ce9cbba1865ec36c29ef546cbbf8ee0 /data/templates/https/nginx.default.tmpl
parent9191455f1d563f34f709b3021fc01b37755201b3 (diff)
parent0e3c35e6517f5cfebb4206c735a2ea976a7fd383 (diff)
downloadvyos-1x-88c38dda4b872d2108156b56538302f4c5058a7e.tar.gz
vyos-1x-88c38dda4b872d2108156b56538302f4c5058a7e.zip
Merge pull request #1105 from jestabro/uds
http-api: T4071: allow API to bind to unix domain socket
Diffstat (limited to 'data/templates/https/nginx.default.tmpl')
-rw-r--r--data/templates/https/nginx.default.tmpl4
1 files changed, 4 insertions, 0 deletions
diff --git a/data/templates/https/nginx.default.tmpl b/data/templates/https/nginx.default.tmpl
index 9d73baeee..ac9203e83 100644
--- a/data/templates/https/nginx.default.tmpl
+++ b/data/templates/https/nginx.default.tmpl
@@ -44,7 +44,11 @@ server {
# proxy settings for HTTP API, if enabled; 503, if not
location ~ /(retrieve|configure|config-file|image|generate|show|docs|openapi.json|redoc|graphql) {
{% if server.api %}
+{% if server.api.socket %}
+ proxy_pass http://unix:/run/api.sock;
+{% else %}
proxy_pass http://localhost:{{ server.api.port }};
+{% endif %}
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 600;