mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-20 17:27:00 +01:00
Allow configuring proxy65 port in tests
This commit is contained in:
parent
0673b068e0
commit
6ca5691792
@ -24,7 +24,8 @@ define_macro:
|
||||
mod_configure: []
|
||||
mod_disco: []
|
||||
mod_ping: []
|
||||
mod_proxy65: []
|
||||
mod_proxy65:
|
||||
port: PROXY_PORT
|
||||
mod_register:
|
||||
welcome_message:
|
||||
subject: "Welcome!"
|
||||
|
@ -46,7 +46,8 @@ define_macro:
|
||||
mod_configure: []
|
||||
mod_disco: []
|
||||
mod_ping: []
|
||||
mod_proxy65: []
|
||||
mod_proxy65:
|
||||
port: PROXY_PORT
|
||||
mod_push:
|
||||
include_body: false
|
||||
mod_push_keepalive: []
|
||||
|
@ -52,7 +52,8 @@ define_macro:
|
||||
mod_configure: []
|
||||
mod_disco: []
|
||||
mod_ping: []
|
||||
mod_proxy65: []
|
||||
mod_proxy65:
|
||||
port: PROXY_PORT
|
||||
mod_push:
|
||||
db_type: sql
|
||||
include_body: false
|
||||
|
@ -52,7 +52,8 @@ define_macro:
|
||||
mod_configure: []
|
||||
mod_disco: []
|
||||
mod_ping: []
|
||||
mod_proxy65: []
|
||||
mod_proxy65:
|
||||
port: PROXY_PORT
|
||||
mod_push:
|
||||
db_type: sql
|
||||
include_body: false
|
||||
|
@ -47,7 +47,8 @@ define_macro:
|
||||
mod_configure: []
|
||||
mod_disco: []
|
||||
mod_ping: []
|
||||
mod_proxy65: []
|
||||
mod_proxy65:
|
||||
port: PROXY_PORT
|
||||
mod_push:
|
||||
include_body: false
|
||||
mod_push_keepalive: []
|
||||
|
@ -46,7 +46,8 @@ define_macro:
|
||||
mod_configure: []
|
||||
mod_disco: []
|
||||
mod_ping: []
|
||||
mod_proxy65: []
|
||||
mod_proxy65:
|
||||
port: PROXY_PORT
|
||||
mod_push:
|
||||
db_type: sql
|
||||
include_body: false
|
||||
|
@ -101,6 +101,7 @@ modules:
|
||||
mod_disco: []
|
||||
mod_ping: []
|
||||
mod_proxy65:
|
||||
port: PROXY_PORT
|
||||
vcard: VCARD
|
||||
mod_muc:
|
||||
vcard: VCARD
|
||||
|
@ -5,6 +5,7 @@ define_macro:
|
||||
S2S_PORT: @@s2s_port@@
|
||||
WEB_PORT: @@web_port@@
|
||||
COMPONENT_PORT: @@component_port@@
|
||||
PROXY_PORT: @@proxy_port@@
|
||||
PASSWORD: >-
|
||||
@@password@@
|
||||
LOGLEVEL: @@loglevel@@
|
||||
|
@ -62,6 +62,7 @@ init_config(Config) ->
|
||||
{s2s_port, 5269},
|
||||
{component_port, 5270},
|
||||
{web_port, 5280},
|
||||
{proxy_port, 7777},
|
||||
{password, Password},
|
||||
{mysql_server, <<"localhost">>},
|
||||
{mysql_port, 3306},
|
||||
|
Loading…
Reference in New Issue
Block a user