Setup: Add Linux package config file examples #3861
Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
parent
3a24d06a00
commit
fdfbdc4ff7
4 changed files with 43 additions and 6 deletions
File diff suppressed because one or more lines are too long
|
@ -45,19 +45,22 @@ Please keep in mind that any changes to the global config options, either [throu
|
|||
|
||||
### `defaults.yml`
|
||||
|
||||
Global config defaults, including the config and storage paths to use, can optionally be set with a `defaults.yml` file in the `/etc/photoprism` directory (requires root privileges). A custom filename for loading the defaults can be specified with the `PHOTOPRISM_DEFAULTS_YAML` environment variable or the `--defaults-yaml` command flag.
|
||||
Global config defaults, including the config and storage paths to use, can optionally be [set with a `defaults.yml` file](defaults.yml) in the `/etc/photoprism` directory (requires root privileges). A custom filename for loading the defaults can be specified with the `PHOTOPRISM_DEFAULTS_YAML` environment variable or the `--defaults-yaml` command flag.
|
||||
|
||||
Since you only need to add the values for which you want to have a custom default, a `defaults.yml` file does not need to contain all available options and can thus be kept to a minimum, e.g.:
|
||||
|
||||
```
|
||||
Debug: false
|
||||
```yaml
|
||||
ConfigPath: "~/.config/photoprism"
|
||||
LogLevel: "info"
|
||||
AuthMode: "password"
|
||||
DatabaseDriver: "sqlite"
|
||||
JpegQuality: 85
|
||||
ConfigPath: "~/.photoprism"
|
||||
UploadNSFW: "true"
|
||||
```
|
||||
|
||||
### `options.yml`
|
||||
|
||||
Default config values in the `defaults.yml` file can be overridden by values specified in a [`options.yml`](https://docs.photoprism.app/getting-started/config-files/) file, the command flags, and the environment variables. The config path from which the `options.yml` file is loaded, if it exists, can be set by adding a `ConfigPath` value to the `defaults.yml`, using the `--config-path` command flag, or with the `PHOTOPRISM_CONFIG_PATH` environment variable.
|
||||
Default config values in the `defaults.yml` file can be overridden by values [specified in an `options.yml` file](options.yml), the command flags, and the environment variables. The config path from which the `options.yml` file is loaded, if it exists, can be set by adding a `ConfigPath` value to the `defaults.yml`, using the `--config-path` command flag, or with the `PHOTOPRISM_CONFIG_PATH` environment variable.
|
||||
|
||||
For a list of supported options and their names, see <https://docs.photoprism.app/getting-started/config-files/>.
|
||||
|
||||
|
|
22
setup/pkg/linux/defaults.yml
Normal file
22
setup/pkg/linux/defaults.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
LogLevel: "info"
|
||||
ConfigPath: "~/.config/photoprism"
|
||||
AdminUser: "admin"
|
||||
DatabaseDriver: "sqlite"
|
||||
AuthMode: "password"
|
||||
DisableTLS: "false"
|
||||
DefaultTLS: "true"
|
||||
OriginalsLimit: 5000
|
||||
HttpCompression: "gzip"
|
||||
ReadOnly: "false"
|
||||
Experimental: "false"
|
||||
DisableWebDAV: "false"
|
||||
DisableSettings: "false"
|
||||
DisableTensorFlow: "false"
|
||||
DisableFaces: "false"
|
||||
DisableClassification: "false"
|
||||
DisableVectors: "false"
|
||||
DisableRaw: "false"
|
||||
RawPresets: "false"
|
||||
JpegQuality: 85
|
||||
DetectNSFW: "false"
|
||||
UploadNSFW: "true"
|
12
setup/pkg/linux/options.yml
Normal file
12
setup/pkg/linux/options.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
LogLevel: "info"
|
||||
AdminUser: "admin"
|
||||
AdminPassword: "insecure"
|
||||
DatabaseUser: "photoprism"
|
||||
DatabasePassword: "insecure"
|
||||
DatabaseName: "photoprism"
|
||||
DatabaseDriver: "mysql"
|
||||
DatabaseServer: "localhost:3306"
|
||||
SiteCaption: "AI-Powered Photos App"
|
||||
SiteDescription: ""
|
||||
SiteAuthor: ""
|
||||
SiteUrl: "http://localhost:2342/"
|
Loading…
Reference in a new issue