diff options
author | Daniil Baturin <daniil@vyos.io> | 2023-11-22 00:10:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-22 00:10:15 +0000 |
commit | d908073cac14539ba54665715ab84a5bf40662ad (patch) | |
tree | e5e78c1371e29bdc366c15e2a209e48317afcb34 /data/templates | |
parent | 93ded25d19000b117de80a064a150925e7b9ff96 (diff) | |
parent | cc4773e23ae9688920a567ba940b88efddbc8d78 (diff) | |
download | vyos-1x-d908073cac14539ba54665715ab84a5bf40662ad.tar.gz vyos-1x-d908073cac14539ba54665715ab84a5bf40662ad.zip |
Merge pull request #2521 from vyos/mergify/bp/sagitta/pr-2516
T5767: HTTPS API add reboot and poweroff endpoints (backport #2516)
Diffstat (limited to 'data/templates')
-rw-r--r-- | data/templates/https/nginx.default.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/https/nginx.default.j2 b/data/templates/https/nginx.default.j2 index 468640b4b..dde839e9f 100644 --- a/data/templates/https/nginx.default.j2 +++ b/data/templates/https/nginx.default.j2 @@ -36,7 +36,7 @@ server { ssl_protocols TLSv1.2 TLSv1.3; # proxy settings for HTTP API, if enabled; 503, if not - location ~ ^/(retrieve|configure|config-file|image|container-image|generate|show|reset|docs|openapi.json|redoc|graphql) { + location ~ ^/(retrieve|configure|config-file|image|container-image|generate|show|reboot|reset|poweroff|docs|openapi.json|redoc|graphql) { {% if server.api %} proxy_pass http://unix:/run/api.sock; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; |