Rename config.ini to config.template.ini
This commit is contained in:
parent
69a8673fd6
commit
d7faf3ac29
5 changed files with 9 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
|
/config.ini
|
||||||
/db/servnest.db
|
/db/servnest.db
|
||||||
/locales/*/C/LC_MESSAGES/messages.mo
|
/locales/*/C/LC_MESSAGES/messages.mo
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Configuration reference
|
# Configuration reference
|
||||||
|
|
||||||
This document describes the `config.ini` directives. It's an INI file, parsed by [PHP's `parse_ini_file`](https://www.php.net/manual/function.parse-ini-file.php). Every setting is expected to be present.
|
This document describes the ServNest configuration directives that are part of `config.ini` (distributed as `config.template.ini`). It's an INI file, parsed by [PHP's `parse_ini_file` function](https://www.php.net/manual/function.parse-ini-file.php). Every directive is expected to be present.
|
||||||
|
|
||||||
## `[common]`
|
## `[common]`
|
||||||
|
|
||||||
|
|
|
@ -293,4 +293,8 @@ echo sftp.servnest.test. 86400 SSHFP 4 2 $(cut -d ' ' -f 2 /etc/sftpgo/ed25519.p
|
||||||
|
|
||||||
### ServNest core configuration
|
### ServNest core configuration
|
||||||
|
|
||||||
Configure `/srv/servnest/core/config.ini` according to [the ServNest configuration reference](configuration.md).
|
Copy the configuration template to the actual configuration file and adapt it according to [the ServNest configuration reference](configuration.md):
|
||||||
|
```shell
|
||||||
|
cp /srv/servnest/core/config.template.ini /srv/servnest/core/config.ini
|
||||||
|
vim /srv/servnest/core/config.ini
|
||||||
|
```
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Translation with gettext
|
# Memo to work with gettext
|
||||||
|
|
||||||
## As a developer
|
## As a developer
|
||||||
|
|
||||||
|
@ -35,4 +35,4 @@ To compile Portable Objects into Machine Objects:
|
||||||
msgfmt locales/fr/C/LC_MESSAGES/messages.po -o locales/fr/C/LC_MESSAGES/messages.mo
|
msgfmt locales/fr/C/LC_MESSAGES/messages.po -o locales/fr/C/LC_MESSAGES/messages.mo
|
||||||
```
|
```
|
||||||
|
|
||||||
Machine Objects files are kept in cache by the Gettext extension, so PHP-FPM needs to be restarted to update translations.
|
Machine Objects files are kept in cache by the PHP gettext extension, so PHP-FPM needs to be restarted to update translations.
|
||||||
|
|
Loading…
Reference in a new issue