Odoo - odoo 配置文件中的 xmlrc_port 和 http_port 参数有什么区别?
Odoo - What is difference between xmlrc_port and http_port parameter in odoo configuration file?
我想知道odoo配置中使用的xmlrc_port和http_port参数的区别文件。
None。 Odoo 12 仅使用 http_port。文档中的差异是 Odoo 版本号。 Odoo 11 及更新版本使用 http_port,旧版本使用 xmlrc_port。 Odoo 12 支持这个只是为了配置兼容性,请参阅源 https://github.com/odoo/odoo/blob/13.0/odoo/tools/config.py 第 147 行中从 xmlrc-port 到 http_port 的映射:
group.add_option("--xmlrpc-port", dest="http_port", type="int", help=hidden)
您可以在此处 http_port 找到 Odoo 11 的文档:https://www.odoo.com/documentation/11.0/reference/cmdline.html and older Odoo 10 with xmlrc_port here: https://www.odoo.com/documentation/10.0/reference/cmdline.html。
我想知道odoo配置中使用的xmlrc_port和http_port参数的区别文件。
None。 Odoo 12 仅使用 http_port。文档中的差异是 Odoo 版本号。 Odoo 11 及更新版本使用 http_port,旧版本使用 xmlrc_port。 Odoo 12 支持这个只是为了配置兼容性,请参阅源 https://github.com/odoo/odoo/blob/13.0/odoo/tools/config.py 第 147 行中从 xmlrc-port 到 http_port 的映射:
group.add_option("--xmlrpc-port", dest="http_port", type="int", help=hidden)
您可以在此处 http_port 找到 Odoo 11 的文档:https://www.odoo.com/documentation/11.0/reference/cmdline.html and older Odoo 10 with xmlrc_port here: https://www.odoo.com/documentation/10.0/reference/cmdline.html。