-
-
Notifications
You must be signed in to change notification settings - Fork 231
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
2 changed files
with
34 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# If true the status of a new app is PENDING so that an administrator has to | ||
# manually activate the app | ||
app_approval: 0 | ||
# The max amount of apps a consumer can register | ||
app_consumer: 16 | ||
# If a user registers through the consumer API the following scopes are assigned | ||
scopes_default: "authorization,consumer" | ||
# Subject of the activation mail | ||
mail_register_subject: "Fusio registration" | ||
# Body of the activation mail | ||
mail_register_body: > | ||
Hello {name}, | ||
you have successful registered at Fusio. | ||
To activate you account please visit the following url: | ||
http://127.0.0.1/projects/fusio/public/consumer/#activate?token={token} | ||
# Email address which is used in the "From" header | ||
mail_sender: "" | ||
# Facebook app secret | ||
provider_facebook_secret: "" | ||
# Google app secret | ||
provider_google_secret: "" | ||
# GitHub app secret | ||
provider_github_secret: "" | ||
# ReCaptcha secret | ||
recaptcha_secret: "" | ||
# If set each API response contains a Access-Control-Allow-Origin header with | ||
# the provided value | ||
cors_allow_origin: "*" |