12345678910111213141516171819202122232425262728293031323334353637383940 |
- # The base URL where this server is publicly accessible.
- # This is used for announcing actors' endpoints to remote servers.
- # Example: https://federation.yourwebsite.org
- mcfi_url = 'http://localhost:8080'
- DEBUG = True
- # Database file path. Used by this instance.
- # You should put it in some private space.
- database_path = './mcfi.sqlite'
- log_path = './log'
- gitosis_path = '/var/lib/gitosis' #fedora-specific
- client_id = '95oj3g3c2wcyjaj7gbwzyvwc6xblmull' # for sharing with clients for OAuth
- client_secret ='Qq7jprMvMZBSNJZ8pULAfaHPJkHsRE7H'
- # Forges/Accounts registered here
- forge = {
- # 'example': {
- # # When a new message is received, your forge will be notified to this URL.
- # # Can be set to "None" for disabling notifications.
- # # Example: https://yourwebsite.org/federation-notification/
- # 'callback': None, # 'http://localhost:9000/',
- #
- # # Secret token to authenticate requests coming from your forge, in contrast
- # # to requests coming from any other remote instance
- # 'authorization_token': 'SECRET'
- # },
-
- 'billspace': {
- 'callback': None,
- 'authorization_token': 'SECRET'
- },
-
- 'zplus': {
- 'callback': None,
- 'authorization_token': 'DIFFERENT-SECRET'
- }
- }
|