Skip to content

Commit ffddcea

Browse files
authored
Merge branch 'master' into add-livestack
2 parents 8ac3472 + 107fab3 commit ffddcea

File tree

40 files changed

+450
-515
lines changed

40 files changed

+450
-515
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Generating new docs
44

55
```bash
6-
DOC_URL=https://support.hypernode.com/en/ecommerce/magento-1/how-to-enable-mysql-query-logging-for-magento-1-x
6+
DOC_URL=https://docs.hypernode.com/en/ecommerce/magento-1/how-to-enable-mysql-query-logging-for-magento-1-x
77
bin/download_doc --output-dir=docs/ecommerce-applications $DOC_URL
88
```
99

docs/_templates/layout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@
272272
<div class="aside-tile__content">
273273
<img src="https://static.hypernode.com/img/berend/logo.svg">
274274
<h4>Need support?</h4>
275-
<p><a class="ahref-orange" href="https://www.hypernode.com/contact/#contact" target="_blank">Submit a ticket</a></p>
275+
<p><a class="ahref-orange" href="https://support.hypernode.com/?ref=docs" target="_blank">Visit our Support Portal</a></p>
276276
</div>
277277
</div>
278278
<div class="aside-tile__container aside-tile__feedback">

docs/about-hypernode/about-hypernode/upgrade-to-debian-buster-technical-implications.md

Lines changed: 0 additions & 117 deletions
This file was deleted.
384 KB
Loading

docs/about-hypernode/billing/how-to-cancel-your-plan.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,15 @@ You never want to accidentally delete a domain name. Because this causes many pr
7171
#### Cancelling Foreign Domains
7272

7373
If you cancel a foreign domain name, Hypernode will let it expire automatically after the contract date has expired. It is therefore possible that your domain name is still available for some time after you have canceled the domain. After the domain expires, your domain may go into quarantine. In this status, only you can register the domain name again, and usually only via Hypernode. Only after the quarantine period has expired is your domain name completely free and can it be registered by everyone.
74+
75+
### How to cancel Hypernode Insights
76+
77+
If Insights isn’t the right fit for you right now, canceling is simple:
78+
79+
1. Log in to your **[Control Panel](https://auth.hypernode.com/login)**.
80+
1. Open the **Settings** of the Hypernode where Insights is active.
81+
1. In the **Cancellation** section, find *Hypernode Insights* and click **Cancel Insights**.
82+
83+
- ![Cancel Hypernode Insights Screenshot](_res/cancel-insights.png)
84+
85+
Your cancellation will be processed automatically and will take effect on the **first day of the following month**.

docs/about-hypernode/security-policies/responsible-disclosure-policy.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ myst:
66
title: Responsible Disclosure Policy | Security | Hypernode
77
redirect_from:
88
- /en/about/security/responsible-disclosure-policy/
9+
- /about-hypernode/security-policies/security-hall-of-fame.html
910
---
1011

1112
<!-- source: https://support.hypernode.com/en/about/security/responsible-disclosure-policy/ -->

docs/about-hypernode/security-policies/security-hall-of-fame.md

Lines changed: 0 additions & 35 deletions
This file was deleted.
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
---
2+
myst:
3+
html_meta:
4+
description: Enable Tideways profiling on Hypernode. Learn how to activate it,
5+
set the API key, configure sampling, and set an environment name.
6+
title: How to set up Tideways on Hypernode
7+
redirect_from:
8+
- /en/best-practices/performance/how-to-set-up-tideways/
9+
---
10+
11+
# How to Set Up Tideways on Hypernode
12+
13+
[Tideways](https://tideways.com/) is an application performance profiling and monitoring tool. On Hypernode you can enable Tideways in minutes using the CLI and control panel.
14+
15+
## Prerequisites
16+
17+
- A Tideways account and project. Create a new project in Tideways and note the project API key.
18+
19+
## How to Activate Tideways
20+
21+
### Activation Via the CLI
22+
23+
First, enable Tideways and set your project API key:
24+
25+
```bash
26+
hypernode-systemctl settings tideways_enabled True
27+
hypernode-systemctl settings tideways_api_key <api_key_here>
28+
```
29+
30+
After enabling, it can take a short while for data to appear in Tideways. We recommend generating some traffic on your shop to produce samples.
31+
32+
#### Optional: Configure Sample Rate
33+
34+
Sampling controls the percentage of requests that will be stored in Tideways, which helps manage cost. For example, to store 25% of samples:
35+
36+
```bash
37+
hypernode-systemctl settings tideways_sample_rate 25
38+
```
39+
40+
#### Optional: Set Environment Name
41+
42+
You can assign an environment label (for example when this node is a staging server):
43+
44+
```bash
45+
hypernode-systemctl settings tideways_env_name staging
46+
```
47+
48+
### Activation through Control Panel
49+
50+
It’s also possible to configure Tideways in the Control Panel.
51+
52+
1. Go to your **Hypernode** in the Control Panel
53+
1. Click **Settings**
54+
1. Go to the tab **Performance & Monitoring**
55+
1. Enable the toggle for **Tideways**, and set your API key in **Tideways API key**

docs/best-practices/security/how-to-secure-magento-cacheleak.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ http {
278278
# would not be able to redirect the magmi .php files (which are
279279
# the ones we really MUST redirect).
280280
location ~* /magmi($|/) {
281-
return https://support.hypernode.com/knowledgebase/securing-access-to-magmi/;
281+
return https://docs.hypernode.com/knowledgebase/securing-access-to-magmi/;
282282
}
283283
284284
location ~ .php/ {

docs/best-practices/testing/how-to-go-live-with-your-hypernode.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -73,17 +73,6 @@ Flush the cache of Magento on the Hypernode. (`magerun cache:flush`)
7373

7474
## Step 7: Set up Hypernode Managed Vhosts
7575

76-
The Hypernode Managed Vhosts (HMV) system is currently enabled by default on all new booted Hypernodes (all Hypernodes created after 01-05-2020).
77-
78-
Check if you have HMV enabled by running this command:
79-
80-
```console
81-
app@abcdef-example-magweb-cmbl:~$ hypernode-systemctl settings managed_vhosts_enabled
82-
managed_vhosts_enabled is set to value True
83-
```
84-
85-
If this is not enabled, skip the part below.
86-
8776
Due to this configuration it is required to add a new vhost for every domain you want to link to your Hypernode. So you need to configure your DNS correctly and add a new vhost for the domain.
8877

8978
To add a new vhost, for example the domainname [www.example.com](http://www.example.com), to your configuration, you can simply run the command `hypernode-manage-vhosts www.example.com`. This will create a new vhost configuration in `/data/web/nginx/www.example.com/`, using the Magento 2 template.

0 commit comments

Comments
 (0)