mirror of https://github.com/kevachat/webapp.git
phpkevacoinjs-lessblockchainsymfonycommunicationwebchatblockchain-chatkevachatdistributed-databasechat
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.3 KiB
70 lines
2.3 KiB
# In all environments, the following files are loaded if they exist, |
|
# the latter taking precedence over the former: |
|
# |
|
# * .env contains default values for the environment variables needed by the app |
|
# * .env.local uncommitted file with local overrides |
|
# * .env.$APP_ENV committed environment-specific defaults |
|
# * .env.$APP_ENV.local uncommitted environment-specific overrides |
|
# |
|
# Real environment variables win over .env files. |
|
# |
|
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES. |
|
# https://symfony.com/doc/current/configuration/secrets.html |
|
# |
|
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2). |
|
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration |
|
|
|
###> symfony/framework-bundle ### |
|
APP_ENV=dev |
|
APP_SECRET=EDIT_ME |
|
###< symfony/framework-bundle ### |
|
|
|
APP_VERSION=1.0.0 |
|
|
|
APP_NAME=KevaChat |
|
|
|
# Connect memcached |
|
APP_MEMCACHED_HOST=127.0.0.1 |
|
APP_MEMCACHED_PORT=11211 |
|
|
|
# Connect kevacoin |
|
|
|
APP_KEVACOIN_PROTOCOL=http |
|
APP_KEVACOIN_HOST=127.0.0.1 |
|
APP_KEVACOIN_PORT=9992 |
|
APP_KEVACOIN_USERNAME=EDIT_ME |
|
APP_KEVACOIN_PASSWORD=EDIT_ME |
|
|
|
# Share with other some mining pool to get coins |
|
APP_KEVACOIN_MINE_POOL_URL=https://miningpoolstats.stream/kevacoin |
|
APP_KEVACOIN_MINE_SOLO_URL=https://kevacoin.org/tutorial_solo_mining.html |
|
|
|
# Address to receive kevacoin powers (make others able to fill node balance) |
|
APP_KEVACOIN_MINE_ADDRESS=EDIT_ME |
|
|
|
# Allowed room namespaces, separated with | (must be owned to accept posts) |
|
APP_KEVACOIN_ROOM_NAMESPACES=EDIT_ME |
|
|
|
# Allowed room namespaces for read only (e.g. project news) separated with | |
|
APP_KEVACOIN_ROOM_NAMESPACES_READONLY=EDIT_ME |
|
|
|
# Redirect from index page to default room |
|
APP_KEVACOIN_ROOM_NAMESPACE_DEFAULT=EDIT_ME |
|
|
|
# Allow remotes to create new rooms (namespaces) |
|
APP_ADD_ROOM_REMOTE_IP_REGEX=/.*/ |
|
|
|
# Allow remotes to create new posts (submit key/values) |
|
APP_ADD_POST_REMOTE_IP_REGEX=/.*/ |
|
|
|
# Time quota for remote publications by IP (seconds) |
|
APP_ADD_POST_REMOTE_IP_DELAY=60 |
|
|
|
# Skip access limits for following IPs separated by | |
|
APP_ADD_POST_REMOTE_IP_MODERATORS= |
|
|
|
# Skip access limits for banned IPs separated by | |
|
APP_ADD_POST_REMOTE_IP_DENIED= |
|
|
|
# Post content rules (for kevacoin value) |
|
APP_ADD_POST_VALUE_REGEX=/^[\w\s\:\.\,\'\"\/\!\?\@\#\%\(\)\[\]\+\-\*\$\%]{2,3072}$/ui |