-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
1 changed file
with
4 additions
and
5 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 |
---|---|---|
@@ -1,13 +1,12 @@ | ||
# mosquitto configuration | ||
|
||
# to run mosquitto unsecurely (without authentication) uncomment the following code block: | ||
listener 1883 | ||
protocol mqtt | ||
allow_anonymous true | ||
|
||
# to run mosquitto securely (with authentication) - RECOMMENDED - uncomment the following code block: | ||
# run touch '/config/passwd' then 'mosquitto_passwd /config/passwd <user>' within the container to generate the password file and add a user | ||
# https://github.com/cmccambridge/mosquitto-unraid/blob/master/README.md#Authentication | ||
#listener 1883 | ||
#protocol mqtt | ||
#password_file /config/passwd | ||
#password_file /config/passwd | ||
|
||
# to run mosquitto unsecurely (without authentication) uncomment the following code block: | ||
allow_anonymous true |