You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(server): add an experimental opt-in API to enable ASN metrics (#1523)
* Update `update_mmdb.sh` script to download ASN database.
* Provide the `ASN` db file to `outline-ss-server`.
* Add an API to opt-in to the ASN metrics.
* Remove unused import.
* Add the ASN setting to the persisted server config.
* Continue trying to find other database if 1 of them fails.
* Resolve lint warning
* Use `outline-ss-server` v1.5.0.
Copy file name to clipboardexpand all lines: src/shadowbox/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -105,9 +105,9 @@ The Outline Server provides a REST API for access key management. If you know th
105
105
106
106
- **Remove an access key:**`curl --insecure -X DELETE $API_URL/access-keys/1`
107
107
108
-
- **Set a data limit for all access keys:** (e.g. limit outbound data transfer access keys to 1MB over 30 days) `curl --insecure -X PUT -H "Content-Type: application/json" -d '{"limit": {"bytes": 1000}}'$API_URL/experimental/access-key-data-limit`
108
+
- **Set a data limit for all access keys:** (e.g. limit outbound data transfer access keys to 1MB over 30 days) `curl --insecure -X PUT -H "Content-Type: application/json" -d '{"limit": {"bytes": 1000}}'$API_URL/server/access-key-data-limit`
109
109
110
-
- **Remove the access key data limit:**`curl --insecure -X DELETE $API_URL/experimental/access-key-data-limit`
110
+
- **Remove the access key data limit:**`curl --insecure -X DELETE $API_URL/server/access-key-data-limit`
0 commit comments