-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add config/poxa.prod.conf placeholder
- Loading branch information
Showing
1 changed file
with
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# HTTP Port | ||
# If not set, will use value of PORT environment variable | ||
poxa.port = 8080 | ||
|
||
# Pusher app key | ||
# If not set, will use value of POXA_APP_KEY environment variable | ||
poxa.app_key = "app_key" | ||
|
||
# Pusher secret | ||
# If not set, will use value of POXA_SECRET environment variable | ||
poxa.app_secret = "secret" | ||
|
||
# Pusher app id | ||
# If not set, will use value of POXA_APP_ID environment variable | ||
poxa.app_id = "app_id" | ||
|
||
# Registry adapter | ||
# If not set, will use value of POXA_REGISTRY_ADAPTER environment variable | ||
poxa.registry_adapter = "gproc" | ||
|
||
# Web hook endpoint | ||
# If not set, will use value of WEB_HOOK environment variable | ||
# poxa.web_hook = | ||
|
||
# HTTPS switch | ||
# If not set, will use value of POXA_SSL environment variable | ||
poxa.ssl.enabled = false | ||
|
||
# HTTPS port | ||
# If not set, will use value of SSL_PORT environment variable | ||
# poxa.ssl.port = | ||
|
||
# PEM-encoded CA certificate path | ||
# If not set, will use value of SSL_CACERTFILE environment variable | ||
# poxa.ssl.cacertfile = | ||
|
||
# Path to user certificate | ||
# If not set, will use value of SSL_CERTFILE environment variable | ||
# poxa.ssl.certfile = | ||
|
||
# Path to the file containing the user's private PEM-encoded key | ||
# If not set, will use value of SSL_KEYFILE environment variable | ||
# poxa.ssl.keyfile = | ||
|