summaryrefslogtreecommitdiff
path: root/data/templates/https
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2023-11-21 10:17:53 +0000
committerViacheslav Hletenko <v.gletenko@vyos.io>2023-11-21 10:17:53 +0000
commit36f3c329c2df0e78f2f5da933d9729a872fb2a11 (patch)
tree66efbf4a9c77c0f90abf4d7104f10054b70dfa90 /data/templates/https
parent3ab206b04350aec4872ed72ae4bd3440a47204f0 (diff)
downloadvyos-1x-36f3c329c2df0e78f2f5da933d9729a872fb2a11.tar.gz
vyos-1x-36f3c329c2df0e78f2f5da933d9729a872fb2a11.zip
T5767: HTTPS API add reboot and poweroff endpoints
Add ability to reboot and poweroff the system via API curl -k --location --request POST 'https://vyos/reboot' \ --form data='{"op": "reboot", "path": ["now"]}' \ --form key='apikey' curl -k --location --request POST 'https://vyos/poweroff' \ --form data='{"op": "poweroff", "path": ["now"]}' \ --form key='apikey'
Diffstat (limited to 'data/templates/https')
-rw-r--r--data/templates/https/nginx.default.j22
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;