Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/books/web_services/03-application-servers.it.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ In questo capitolo, si potranno apprendere le caratteristiche di PHP e PHP-FPM.

**Obiettivi**: si imparerà come:

:heavy_check_mark: installare un application server PHP\
:heavy_check_mark: configurare il pool PHP-FPM\
:heavy_check_mark: installare un application server PHP
:heavy_check_mark: configurare il pool PHP-FPM
:heavy_check_mark: ottimizzare un server di applicazioni PHP-FPM

:checkered_flag: **PHP**, **PHP-FPM**, **Server applicativo**

**Conoscenza**: :star: :star: :star:\
**Conoscenza**: :star: :star: :star:
**Complessità**: :star: :star: :star:

**Tempo di lettura**: 30 minuti
Expand Down
6 changes: 3 additions & 3 deletions docs/books/web_services/03-application-servers.uk.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ tags:

**Цілі**: Ви дізнаєтеся, як:

:heavy_check_mark: встановити сервер додатків PHP\
:heavy_check_mark: налаштувати пул PHP-FPM\
:heavy_check_mark: встановити сервер додатків PHP
:heavy_check_mark: налаштувати пул PHP-FPM
:heavy_check_mark: оптимізувати сервер додатків PHP-FPM

:checkered_flag: **PHP**, **PHP-FPM**, **Application server**

**Знання**: :star: :star: :star:\
**Знання**: :star: :star: :star:
**Складність**: :star: :star: :star:

**Час читання**: 30 хвилин
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ Drucken Sie die interne IP-Adresse und den Pod-CIDR-Bereich für jede Worker-Ins
{
SERVER_IP=$(grep server machines.txt | cut -d " " -f 1)
NODE_0_IP=$(grep node-0 machines.txt | cut -d " " -f 1)
NODE_0_SUBNET=$(grep node-0 machines.txt | cut -d " " -f 5)
NODE_0_SUBNET=$(grep node-0 machines.txt | cut -d " " -f 4)
NODE_1_IP=$(grep node-1 machines.txt | cut -d " " -f 1)
NODE_1_SUBNET=$(grep node-1 machines.txt | cut -d " " -f 5)
NODE_1_SUBNET=$(grep node-1 machines.txt | cut -d " " -f 4)
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ Affichez l'adresse IP interne et la plage CIDR du pod pour chaque instance de tr
{
SERVER_IP=$(grep server machines.txt | cut -d " " -f 1)
NODE_0_IP=$(grep node-0 machines.txt | cut -d " " -f 1)
NODE_0_SUBNET=$(grep node-0 machines.txt | cut -d " " -f 5)
NODE_0_SUBNET=$(grep node-0 machines.txt | cut -d " " -f 4)
NODE_1_IP=$(grep node-1 machines.txt | cut -d " " -f 1)
NODE_1_SUBNET=$(grep node-1 machines.txt | cut -d " " -f 5)
NODE_1_SUBNET=$(grep node-1 machines.txt | cut -d " " -f 4)
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Kopieren Sie aus der `jumpbox` Kubernetes-Binärdateien und `systemd`-Unit-Datei

```bash
for host in node-0 node-1; do
SUBNET=$(grep $host machines.txt | cut -d " " -f 5)
SUBNET=$(grep $host machines.txt | cut -d " " -f 4)
sed "s|SUBNET|$SUBNET|g" \
configs/10-bridge.conf > 10-bridge.conf

Expand Down