Skip to content

Commit f83122a

Browse files
author
Jonathan Visser
committed
Fix typos in configure-hypernode-settings-on-deployment doc
1 parent 815fcfb commit f83122a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/hypernode-deploy/getting-started/configure-hypernode-settings-on-deployment.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@ myst:
88

99
# Configure Hypernode settings on Deployment
1010

11-
Hypernode Deploy allows you to change configrations to the Hypernode server on-the-fly and on deploytime, this is extremely befinitial when doing a MySQL upgrade or NodeJS versions controlled by your source version control.
11+
Hypernode Deploy allows you to change configurations to the Hypernode server on-the-fly and on deploy time, this is extremely beneficial when doing a MySQL upgrade or Node.js versions controlled by your source version control.
1212

1313
Here's a list of changes you can make to the Hypernode:
1414

15-
- Hypernode Systemctl Configration
15+
- Hypernode Systemctl Configuration
1616
- Cron Configuration
17-
- Nginx vhost Configration
17+
- Nginx vhost Configuration
1818
- Supervisor Configuration
1919
- Varnish Configuration
2020

2121
## Hypernode Systemctl Configuration
2222

2323
You can use Hypernode's systemctl utility to change crucial settings about the Hypernode server. This can also be configured in your deployments. More information about the systemctl utility can be found [here](../../hypernode-platform/tools/how-to-use-the-hypernode-systemctl-cli-tool.md).
2424

25-
You can simply define these setting configuration by using this code in your `deploy.php` file:
25+
You can simply define these settings configurations by using this code in your `deploy.php` file:
2626

2727
```php
2828
$configuration->setPlatformConfigurations([
@@ -37,15 +37,15 @@ $configuration->setPlatformConfigurations([
3737

3838
## Cron Configuration
3939

40-
Lots of applications need a set of cronjob for the application to function correctly. Instead of having to configure this on the server manually on each change, you can set this up on the Deployment.
40+
Lots of applications need a set of cron jobs for the application to function correctly. Instead of having to configure this on the server manually on each change, you can set this up on the Deployment.
4141

4242
For example, start creating the `./etc/cron` folder and putting in the following:
4343

4444
```bash
4545
* * * * * echo 'Hello world!' >> /data/web/cron.log
4646
```
4747

48-
The contents of this file will be written and get replaced to your crontab as its own block on each deployment, this makes it easy manage and update the crons.
48+
The contents of this file will be written and get replaced to your crontab as a separate block on each deployment, this makes it easy to manage and update the crons.
4949

5050
Now add the cron configuration to your `deploy.php`
5151

@@ -55,9 +55,9 @@ $configuration->setPlatformConfigurations([
5555
]);
5656
```
5757

58-
## Nginx vhost Configration
58+
## Nginx vhost Configuration
5959

60-
You can use Hypernode Deploy to apply nginx configurations set to your vhost, you do this by creating a new folder for your nginx configurations in `./etc/nginx` and placing your configs there.
60+
You can use Hypernode Deploy to apply nginx configurations set up for your vhost, you do this by creating a new folder for your nginx configurations in `./etc/nginx` and placing your configs there.
6161

6262
```{note}
6363
All existing nginx configurations will be replaced on first deployment when there's already nginx configurations known for this vhost name.
@@ -85,7 +85,7 @@ $configuration->setPlatformConfigurations([
8585

8686
## Varnish Configuration
8787

88-
You can update your varnish configuration by adding the file at `etc/varnish.vcl` , and configuring it in `deploy.php` like so:
88+
You can update your varnish configuration by adding a file at `etc/varnish.vcl` , and configuring it in `deploy.php` like so:
8989

9090
```php
9191
$configuration->setPlatformConfigurations([

0 commit comments

Comments
 (0)