Skip to content

Commit cc3dba4

Browse files
authored
Update Wake-on-LAN instructions in README template
1 parent cdd8ed4 commit cc3dba4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/templates/README.template.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Add the following to your `docker-compose.yaml`:
5656
Send a Wake-on-LAN packet to a host. For example, to wake a machine at `192.168.1.1` with MAC address `00:00:00:00:00:00`:
5757

5858
```bash
59-
curl -X POST "http://wol-client:5555/start" \
59+
curl -X POST "http://wol-client:5555/wake" \
6060
-H "Content-Type: application/json" \
6161
-d '{
6262
"ip": "192.168.1.1",
@@ -68,7 +68,7 @@ curl -X POST "http://wol-client:5555/start" \
6868
You can also specify a different IP address for pinging:
6969

7070
```bash
71-
curl -X POST "http://wol-client:5555/start" \
71+
curl -X POST "http://wol-client:5555/wake" \
7272
-H "Content-Type: application/json" \
7373
-d '{
7474
"ip": "192.168.1.100",
@@ -83,7 +83,7 @@ curl -X POST "http://wol-client:5555/start" \
8383
8484
## WebSocket Updates
8585

86-
The `/start` endpoint returns a `client_id`.
86+
The `/wake` endpoint returns a `client_id`.
8787
Use it to open a WebSocket connection:
8888

8989
```

0 commit comments

Comments
 (0)