~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to contrib/debian/default

  • Committer: John Ferlito
  • Date: 2009-09-03 00:36:15 UTC
  • mto: This revision was merged to the branch mainline in revision 4913.
  • Revision ID: johnf@inodes.org-20090903003615-o7mcxvri5vrxiekf
Listen on localhost by default and add a Warning

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Specify startup options for bzr --serve
2
2
 
 
3
# WARNING
 
4
# When bazaar runs in serve mode there is no authentication. You will
 
5
# be publishing your tree as readable or potentially writeable to everyone
 
6
 
3
7
# You need to uncomment the line below to enable this service
4
8
#ENABLED=1
5
9
 
12
16
 
13
17
# Other arguments
14
18
# Add --allow-writes for RW access
15
 
DAEMON_ARGS="--port=0.0.0.0:4155"
 
19
# Example config listens on localhost
 
20
DAEMON_ARGS="--port=127.0.0.1:4155"