diff options
author | John Estabrook <jestabro@vyos.io> | 2021-12-10 14:41:23 -0600 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2021-12-14 09:53:35 -0600 |
commit | 1b0007a01fd541b5f31ed94518e786a998bd6f43 (patch) | |
tree | 6e65e64f79a6f97fc1ca3667f468ba129ac0154b /data/templates/https | |
parent | ce2b74fbcd5718a88bcaa26e1aa2b31549fcc5bb (diff) | |
download | vyos-1x-1b0007a01fd541b5f31ed94518e786a998bd6f43.tar.gz vyos-1x-1b0007a01fd541b5f31ed94518e786a998bd6f43.zip |
http-api: T4071: allow API to bind to unix domain socket
(cherry picked from commit 0e3c35e6517f5cfebb4206c735a2ea976a7fd383)
Diffstat (limited to 'data/templates/https')
-rw-r--r-- | data/templates/https/nginx.default.tmpl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/data/templates/https/nginx.default.tmpl b/data/templates/https/nginx.default.tmpl index d25e5193a..968ba806c 100644 --- a/data/templates/https/nginx.default.tmpl +++ b/data/templates/https/nginx.default.tmpl @@ -43,7 +43,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; |