You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/hypernode-deploy/getting-started/configure-hypernode-settings-on-deployment.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,21 +8,21 @@ myst:
8
8
9
9
# Configure Hypernode settings on Deployment
10
10
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.
12
12
13
13
Here's a list of changes you can make to the Hypernode:
14
14
15
-
- Hypernode Systemctl Configration
15
+
- Hypernode Systemctl Configuration
16
16
- Cron Configuration
17
-
- Nginx vhost Configration
17
+
- Nginx vhost Configuration
18
18
- Supervisor Configuration
19
19
- Varnish Configuration
20
20
21
21
## Hypernode Systemctl Configuration
22
22
23
23
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).
24
24
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:
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.
41
41
42
42
For example, start creating the `./etc/cron` folder and putting in the following:
43
43
44
44
```bash
45
45
*****echo'Hello world!'>> /data/web/cron.log
46
46
```
47
47
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.
49
49
50
50
Now add the cron configuration to your `deploy.php`
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.
61
61
62
62
```{note}
63
63
All existing nginx configurations will be replaced on first deployment when there's already nginx configurations known for this vhost name.
0 commit comments