-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathfab.conf.example
31 lines (24 loc) · 1.46 KB
/
fab.conf.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[DEFAULT]
# This is an example fabric deployment config file. Mandatory options are host and path, all other
# options are optional.
# The remote path where the git repository is checked out.
path = ...
# The host where the the git repository is checked out. This string is used for SSH, so it may be
# something like username@hostname or anything you have configured in your ssh config.
host = ...
# Override the location of the virtualenv. The default location is one level above the path
# setting. So if "path = /var/lib/xmpp-account/django-xmpp-account", then virtualenv is
# "/var/lib/xmpp-account". If you give an empty string, no virtualenv will be used.
#virtualenv = ...
# If you specify a group, fabric will automatically chgrp the entire source code to it and make
# sure it is not world-readable. You must make sure that any WSGI servers and/or Celery daemons can
# read the source code (preferably run them with this group as te primary process group id).
#group = xmpp-account
# Restart a uWSGI emperor vassal (by touching the config file) after deployment. This may either be
# a name (and fabric will assume the config file is /etc/uwsgi-emperor/vassals/<name>.ini) or an
# absolute path.
#uwsgi-emperor = xmpp-account
# Restart a Celery daemon using systemd. The value is the name of the systemd service.
#celery-systemd = celery-xmpp-account
# If Celery can be restarted via a SysV style init script (in /etc/init.d/), give its name here:
#celery-sysv = celery-xmpp-account