diff --git a/master/docs/tutorial/tour.rst b/master/docs/tutorial/tour.rst
index 1ceeeaa..f4d7e99 100644
|
a
|
b
|
Now, look for the section marked *PROJECT IDENTITY* which reads:: |
| 48 | 48 | c['titleURL'] = "http://divmod.org/trac/wiki/DivmodPyflakes" |
| 49 | 49 | |
| 50 | 50 | If you want, you can change either of these links to anything you want to see what happens when you change them. |
| | 51 | |
| | 52 | Setting Authorized Web Users |
| | 53 | ---------------------------- |
| | 54 | |
| | 55 | Further down, look for the WebStatus configuration:: |
| | 56 | |
| | 57 | c['status'] = [] |
| | 58 | |
| | 59 | from buildbot.status import html |
| | 60 | from buildbot.status.web import authz, auth |
| | 61 | |
| | 62 | authz_cfg=authz.Authz( |
| | 63 | # change any of these to True to enable; see the manual for more |
| | 64 | # options |
| | 65 | auth=auth.BasicAuth([("pyflakes","pyflakes")]), |
| | 66 | gracefulShutdown = False, |
| | 67 | forceBuild = 'auth', # use this to test your slave once it is set up |
| | 68 | forceAllBuilds = False, |
| | 69 | pingBuilder = False, |
| | 70 | stopBuild = False, |
| | 71 | stopAllBuilds = False, |
| | 72 | cancelPendingBuild = False, |
| | 73 | ) |
| | 74 | c['status'].append(html.WebStatus(http_port=8010, authz=authz_cfg)) |
| | 75 | |
| | 76 | The auth.BasicAuth() define authorized users and their passwords. You can change these or add new ones. |
| | 77 | |
| 51 | 78 | After making a change go into the terminal and type:: |
| 52 | 79 | |
| 53 | 80 | buildbot reconfig master |