mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 20:51:25 +03:00
docs: Configuration of nginx.conf, config.yaml, and .env configs
Some checks are pending
Create and publish a Docker image / build-and-push-server (push) Waiting to run
Create and publish a Docker image / build-and-push-chart (push) Waiting to run
Create and publish a Docker image / build-and-push-CR (push) Waiting to run
Deploy docs / deploy (push) Waiting to run
Some checks are pending
Create and publish a Docker image / build-and-push-server (push) Waiting to run
Create and publish a Docker image / build-and-push-chart (push) Waiting to run
Create and publish a Docker image / build-and-push-CR (push) Waiting to run
Deploy docs / deploy (push) Waiting to run
This commit is contained in:
parent
1d0e77f755
commit
a43230cd9e
4 changed files with 191 additions and 0 deletions
24
docs/config/config-env.md
Normal file
24
docs/config/config-env.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
Kekkai can be configured using the `.env` file in the working directory. `.env.example`.
|
||||
|
||||
`.env` config is used to configure PosgreSQL running in Docker Compose.
|
||||
|
||||
!!! info
|
||||
If you are not using Docker Compose, you do not need to edit this config
|
||||
|
||||
??? note "Example file `.env.example`"
|
||||
```
|
||||
# Connection secret for postgres. You should change it to a random password
|
||||
# Please use only the characters `A-Za-z0-9`, without special characters or spaces
|
||||
|
||||
POSTGRES_PASSWORD=my_password
|
||||
|
||||
# If you do not know what you are doing, then you should not edit the values below
|
||||
###################################################################################
|
||||
POSTGRES_DB=kekkai
|
||||
DB_HOST=postgres
|
||||
POSTGRES_USER=postgres
|
||||
```
|
||||
|
||||
This config only edits the password for PosgreSQL.
|
||||
|
||||
Please use only the characters `A-Za-z0-9`, without special characters or spaces
|
Loading…
Add table
Reference in a new issue