Commit c6c069d8 authored by Łukasz Nowak's avatar Łukasz Nowak

- return proper url wiht IPv6, unfortunately this is current assumption


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@44434 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 20faa1e1
......@@ -500,7 +500,8 @@ SSLRandomSeed connect builtin
config=apache_config_file
)
]))
return 'https://%(ip)s:%(port)s' % apache_conf
# Note: IPv6 is assumed always
return 'https://[%(ip)s]:%(port)s' % apache_conf
def installMysqlServer(self, ip, port, database='erp5', user='user',
test_database='test_erp5', test_user='test_user'):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment