Skip to content

Commit

Permalink
Add config/poxa.prod.conf placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
edgurgel committed Oct 12, 2017
1 parent e47eee6 commit 79ad640
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions config/poxa.prod.conf
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 =

0 comments on commit 79ad640

Please sign in to comment.