Linux 上外部 Web (Grails) 应用程序配置文件的标准位置
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
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.
我不相信有一个标准的位置。您通常通过 config.groovy 中的 grails.config.locations 属性定义外部配置文件的位置。
编辑
阅读您的评论后,我想标准位置是:
或
.grails
文件夹中。因为这些是 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:
OR
.grails
folder in your home directory.As these are the defaults in
config.groovy
file.有一个插件为您的应用程序提供标准化外部配置,如果
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.