Update 0.1.9.md

This commit is contained in:
Stefan Pejcic 2024-05-30 11:26:13 +02:00 committed by GitHub
parent a6b0738d69
commit 965a7e98a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,6 +26,7 @@ Not yet released.
### 💅 Polish
- [Install script now accepts `--hostname=` flag](#hostname-flag).
- [Custom SSH Welcome message](#ssh-welcome)
- `www.<DOMAIN_NAME>` is now automatically added as alias for new domains.
- `opencli user-add` `opencli user-change_plan` and `opencli plan-create` scripts now use plan name instead of plan id.
@ -209,3 +210,15 @@ and set the data to be used:
"disk_limit_for_storage_file": 20
}
### hostname flag
[Install script](https://openpanel.co/docs/admin/intro/#installation) now accepts `--hostname=` flag to set the provided hostname on the server and set it for accessing both OpenPanel and OpenAdmin interfaces. The hostname must be a [Fully qualified domain name](https://en.wikipedia.org/wiki/Fully_qualified_domain_name).
Example:
```bash
bash <(curl -sSL https://get.openpanel.co/) --hostname=server.openpanel.site
```