-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
be7e9f0
commit 848c82e
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,7 +100,7 @@ Enable TLS: | |
|
||
```sh | ||
curl -s --anyauth -u "root:$DEVICE_PASSWORD" \ | ||
"http://$DEVICE_IP/axis-cgi/param.cgi?action=update&root.dockerdwrapper.UseTLS=yes" | ||
"http://$DEVICE_IP/axis-cgi/param.cgi?action=update&root.dockerdwrapperwithcompose.UseTLS=yes" | ||
``` | ||
|
||
Enable TCP Socket: | ||
|
@@ -129,25 +129,25 @@ The files can be uploaded to the device using HTTP. | |
|
||
```sh | ||
curl --anyauth -u "root:$DEVICE_PASSWORD" -F [email protected] -X POST \ | ||
http://$DEVICE_IP/local/dockerdwrapper/ca.pem | ||
http://$DEVICE_IP/local/dockerdwrapperwithcompose/ca.pem | ||
curl --anyauth -u "root:$DEVICE_PASSWORD" -F [email protected] -X POST \ | ||
http://$DEVICE_IP/local/dockerdwrapper/server-cert.pem | ||
http://$DEVICE_IP/local/dockerdwrapperwithcompose/server-cert.pem | ||
curl --anyauth -u "root:$DEVICE_PASSWORD" -F [email protected] -X POST \ | ||
http://$DEVICE_IP/local/dockerdwrapper/server-key.pem | ||
http://$DEVICE_IP/local/dockerdwrapperwithcompose/server-key.pem | ||
``` | ||
|
||
If desired, they can be deleted from the device using: | ||
|
||
```sh | ||
curl --anyauth -u "root:$DEVICE_PASSWORD" -X DELETE \ | ||
http://$DEVICE_IP/local/dockerdwrapper/ca.pem | ||
http://$DEVICE_IP/local/dockerdwrapperwithcompose/ca.pem | ||
curl --anyauth -u "root:$DEVICE_PASSWORD" -X DELETE \ | ||
http://$DEVICE_IP/local/dockerdwrapper/server-cert.pem | ||
http://$DEVICE_IP/local/dockerdwrapperwithcompose/server-cert.pem | ||
curl --anyauth -u "root:$DEVICE_PASSWORD" -X DELETE \ | ||
http://$DEVICE_IP/local/dockerdwrapper/server-key.pem | ||
http://$DEVICE_IP/local/dockerdwrapperwithcompose/server-key.pem | ||
``` | ||
|
||
They can also be copied to the `/usr/local/packages/dockerdwrapper/localdata` | ||
They can also be copied to the `/usr/local/packages/dockerdwrapperwithcompose/localdata` | ||
directory of the device using `scp`. | ||
|
||
```sh | ||
|