You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
375 B
9 lines
375 B
6 years ago
|
# create a password file for "testuser" and "testpassword"
|
||
|
docker run --entrypoint htpasswd httpd:2.4 -Bbn testuser testpassword > httpd.htpasswd
|
||
|
# Create another one for "testuserpush" and "testpasswordpush"
|
||
|
docker run --entrypoint htpasswd httpd:2.4 -Bbn testuserpush testpasswordpush >> httpd.htpasswd
|
||
|
|
||
|
# Create your group file
|
||
|
echo "pusher: testuserpush" > httpd.groups
|
||
|
|