mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 20:51:25 +03:00
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
27 lines
653 B
Markdown
27 lines
653 B
Markdown
Kekkai is used by `Nginx` to redirect to the correct microservice.
|
|
|
|
## Change domain
|
|
|
|
Change localhost to your `domain` or `ipv4` based on your needs. If you need to use Kekkai locally, you don't need to change anything,
|
|
|
|
??? note
|
|
```
|
|
...
|
|
server_name localhost; # Your domain
|
|
...
|
|
```
|
|
|
|
|
|
## Change name for SSL
|
|
This is where the name of the SSL files changes. This needs to be edited if you have a different one
|
|
|
|
Change `privkey.pem` and `fullchain.pem` to the names of the files you have.
|
|
|
|
??? note
|
|
```
|
|
...
|
|
ssl_certificate /etc/nginx/ssl/fullchain.pem;
|
|
ssl_certificate_key /etc/nginx/ssl/privkey.pem;
|
|
...
|
|
```
|
|
|