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
Copy file name to clipboardExpand all lines: README.md
+12
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,19 @@ Options on command line :
34
34
-*-path* to set the URL path (defaults to *simple*).
35
35
-*-root* to set the directory where packages are living (defaults to current directory).
36
36
-*-shop* to set the URL of the shop for packages that are not found.
37
+
-*-auth* to set the path to the authentication file
37
38
38
39
The server outputs logs on the terminal. To get help on the console, type `cheeseshop -help`.
39
40
41
+
The authentication file is made of lines with the username and the MD5 sum of the password separated with a space, such as (for user *foo* with password *bar*):
42
+
43
+
foo 37b51d194a7513e45b56f6524f2d51f2
44
+
45
+
To compute MD5 sum for a given password, in order to fill the authentication file, you may type following command :
46
+
47
+
$ echo -n bar | md5sum
48
+
37b51d194a7513e45b56f6524f2d51f2 -
49
+
50
+
If no *-auth* option is set on command line, you won't have to authenticate to upload a package to *CheeseShop*.
0 commit comments