Linux 上外部 Web (Grails) 应用程序配置文件的标准位置

发布于 2024-11-30 04:51:13 字数 176 浏览 2 评论 0原文

Linux (Ubuntu) 上是否有一个标准位置来放置 Web 应用程序 (Grails) 使用的外部配置文件?

更新:显然,我的问题有些混乱。 Grails 处理配置文件的方式很好。我只是想知道linux上是否有一个标准的位置来放置配置文件。类似于日志文件(/var/log)的标准。如果重要的话,我正在谈论生产系统。

Is there a standard location on Linux (Ubuntu) to place external config files that a web application (Grails) uses?

UPDATE: Apparently, there is some confusion to my question. The way Grails handles config files is fine. I just want to know if there is a standard location on linux to place configuration files. Similar to how there is a standard for log files (/var/log). If it matters, I'm talking about a production system.

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

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

发布评论

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

评论(3

骄傲 2024-12-07 04:51:13

Linux 配置文件通常驻留在 /etc 中。例如,apache 配置文件位于 /etc/httpd.conf 中。与标准系统包无关的配置文件通常位于 /usr/local/etc 中。

所以我建议/usr/local/etc/my-grails-app-name/。请注意,这意味着您无法在同一服务器上运行同一应用程序的两种不同配置。

Linux configuration files typically reside in /etc. For example, apache configuration files live in /etc/httpd. Configuration file not associated with standard system packages often live in /usr/local/etc.

So I'd suggest /usr/local/etc/my-grails-app-name/. Beware that this means you can't run two different configurations of the same app on the same server.

稍尽春風 2024-12-07 04:51:13

我不相信有一个标准的位置。您通常通过 config.groovy 中的 grails.config.locations 属性定义外部配置文件的位置。

编辑

阅读您的评论后,我想标准位置是:

  • 类路径上的某个位置

  • 主目录中的 .grails 文件夹中。

因为这些是 config.groovy 文件中的默认值。

grails.config.locations = [ "classpath:${appName}-config.properties",
                            "classpath:${appName}-config.groovy",
                            "file:${userHome}/.grails/${appName}-config.properties",
                            "file:${userHome}/.grails/${appName}-config.groovy"]

I don't believe there is a standard location. You usually define the location for your external config files via the grails.config.locations property in config.groovy.

EDIT

After reading your comment, I suppose the standard locations would be:

  • Somewhere on the classpath

OR

  • In the .grails folder in your home directory.

As these are the defaults in config.groovy file.

grails.config.locations = [ "classpath:${appName}-config.properties",
                            "classpath:${appName}-config.groovy",
                            "file:${userHome}/.grails/${appName}-config.properties",
                            "file:${userHome}/.grails/${appName}-config.groovy"]
坦然微笑 2024-12-07 04:51:13

有一个插件为您的应用程序提供标准化外部配置,如果 grails. config.locations 参数不足。

There's a plugin Standardized external configuration for your app which you might find useful if the grails.config.locations parameter is insufficient.

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