-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Symfony was updated to 4 to be able to use default env var processor, that was introduced in Symfony 4.3.
- Loading branch information
1 parent
96f3fbf
commit d662906
Showing
7 changed files
with
27 additions
and
22 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
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 |
---|---|---|
@@ -1,13 +1,14 @@ | ||
parameters: | ||
beanstalkd: tcp://127.0.0.1:11300 # Beanstalkd connection URI | ||
http_server_port: 34981 # HTTP Server Port | ||
logger_mail_to: [email protected] # Email address where to send significant events mail notifications | ||
logger_mail_from: "From Name <[email protected]>" # From name/address for significant events mail notifications | ||
console_port: 8080 # Web console port | ||
console_username: admin # Web console username | ||
console_password: password # Web console password | ||
console_log_file: /tmp/esb_console.log # Web console server log file | ||
elasticsearch_base_uri: '%env(string:ES_BASE_URI)%' # ElasticSearch base URI (i.e. http://elasticsearch:9200) | ||
beanstalkd: tcp://127.0.0.1:11300 # Beanstalkd connection URI | ||
http_server_port: 34981 # HTTP Server Port | ||
http_server_max_body_size: '%env(default::int:ESB_HTTP_SERVER_MAX_BODY_SIZE)%' # HTTP Server max body size | ||
logger_mail_to: [email protected] # Email address where to send significant events mail notifications | ||
logger_mail_from: "From Name <[email protected]>" # From name/address for significant events mail notifications | ||
console_port: 8080 # Web console port | ||
console_username: admin # Web console username | ||
console_password: password # Web console password | ||
console_log_file: /tmp/esb_console.log # Web console server log file | ||
elasticsearch_base_uri: '%env(string:ES_BASE_URI)%' # ElasticSearch base URI (i.e. http://elasticsearch:9200) | ||
|
||
services: | ||
_defaults: | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
parameters: | ||
beanstalkd: '%env(string:ESB_BEANSTALKD_URL)%' | ||
http_server_port: '%env(int:ESB_HTTP_SERVER_PORT)%' | ||
http_server_max_body_size: '%env(ESB_HTTP_SERVER_MAX_BODY_SIZE)%' | ||
http_server_max_body_size: '%env(default::int:ESB_HTTP_SERVER_MAX_BODY_SIZE)%' | ||
logger_mail_to: "[email protected]" | ||
logger_mail_from: "From Name <[email protected]>" | ||
console_port: '%env(int:ESB_CONSOLE_PORT)%' | ||
|
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