Ubuntu 上的 Cherrypy 配置文件位于哪里?

发布于 2024-12-09 02:58:09 字数 49 浏览 0 评论 0原文

我编写了一个要添加到配置文件中的工具,但我在任何地方都找不到该文件。配置文件在哪里?

I have a tool written to be added to the configuration file but I cannot find the file anywhere. Where is the configuration file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

还如梦归 2024-12-16 02:58:09

没有配置文件。所有形式的配置都是通过代码完成的。

使用cheerypy.config的简单站点配置示例:

#cheerypy.config is flat dictionary that you can modify using
cherrypy.config.update({'server.socket_host': '10.10.10.10',
                        'server.socket_port': 80,
                       })

您可以获取更多信息此处

There is no configuration file. All forms of configuration is done through code.

A simple site-config example using cheerypy.config:

#cheerypy.config is flat dictionary that you can modify using
cherrypy.config.update({'server.socket_host': '10.10.10.10',
                        'server.socket_port': 80,
                       })

You can get more information here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文