Skip to content

Commit

Permalink
change kamal docs to match template
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Nov 27, 2024
1 parent a37e76f commit bf9a7e7
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions MyApp/_pages/releases/v8_05.md
Original file line number Diff line number Diff line change
Expand Up @@ -401,29 +401,41 @@ One of the big benefits of Kamal is the focus on ergonomics and the really well
x new blazor-vue MyApp
:::

Update the `config/deploy.yml` with the following details
Update the `config/deploy.yml` with the following details:

### GitHub Container Registry Image

```yml
# Name of the container image.
image: github-org/repository-name # Or, your-user/repository-name
# Name of the container image
image: my-user/myapp
```
### Server Web
Configure with your Linux Host IP Address:
```yml
servers:
# IP address of server, optionally use env variable
web:
- 123.123.123.123 # Your Linux Host IP Address
- 123.123.123.123
```
Alternatively, you can use an environment variable for the server IP address, e.g:
```yml
web:
- <%= ENV['KAMAL_DEPLOY_IP'] %>
```
### Proxy Host
Configure with your domain pointing to the same IP as your host:
```yml
proxy:
ssl: true
host: myapp.example.com # Your domain pointing to the same IP as your host
host: myapp.example.com
```
### Health Checks
Expand Down

0 comments on commit bf9a7e7

Please sign in to comment.