From bbcf77abde16e1e4efc5607576ead42ac39f032a Mon Sep 17 00:00:00 2001 From: x3 Date: Sun, 25 Feb 2024 20:31:58 +0100 Subject: [PATCH] http -> https in README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3a61d21..90f0fa8 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Example config.json "DBpath": "/var/lib/ngfshare/database.db", "StoreDir": "/var/lib/ngfshare/store", "HTMLTemplateDir": "/var/lib/ngfshare/templates", - "UrlPrefix": "http://share.yourdomain.xyz", + "UrlPrefix": "https://share.yourdomain.xyz", "IdLen": 5, "AuthKeyLen": 30 } @@ -52,9 +52,9 @@ This returns a json dict { "id": "A5HjC", "filename": "img.png", - "url": "http://share.yourdomain.xyz/-A5HjC/img.png", - "url_short": "http://share.yourdomain.xyz/-A5HjC", - "delete_url": "http://share.yourdomain.xyz/api/delete/A5HjC" + "url": "https://share.yourdomain.xyz/-A5HjC/img.png", + "url_short": "https://share.yourdomain.xyz/-A5HjC", + "delete_url": "https://share.yourdomain.xyz/api/delete/A5HjC" } ```