Set Compose Toggler in NGINX Section
Dieser Commit ist enthalten in:
Ursprung
2571d5812a
Commit
b156a05dda
2 geänderte Dateien mit 56 neuen und 4 gelöschten Zeilen
|
@ -26,7 +26,19 @@ server {
|
|||
}
|
||||
```
|
||||
|
||||
Speichern Sie und starten Sie Nginx neu: `docker compose restart nginx-mailcow`.
|
||||
Speichern Sie und starten Sie Nginx neu:
|
||||
|
||||
=== "docker compose (Plugin)"
|
||||
|
||||
``` bash
|
||||
docker compose restart nginx-mailcow
|
||||
```
|
||||
|
||||
=== "docker-compose (Standalone)"
|
||||
|
||||
``` bash
|
||||
docker-compose restart nginx-mailcow
|
||||
```
|
||||
|
||||
Ă–ffnen Sie nun `mailcow.conf` und suchen Sie `ADDITIONAL_SAN`.
|
||||
FĂĽgen Sie `webmail.example.org` zu diesem Array hinzu, verwenden Sie keine AnfĂĽhrungszeichen!
|
||||
|
@ -35,4 +47,18 @@ FĂĽgen Sie `webmail.example.org` zu diesem Array hinzu, verwenden Sie keine Anf
|
|||
ADDITIONAL_SAN=webmail.example.org
|
||||
```
|
||||
|
||||
Führen Sie `docker compose up -d` aus. Siehe "acme-mailcow" und "nginx-mailcow" Logs, wenn etwas fehlschlägt.
|
||||
FĂĽhren Sie den Befehl aus:
|
||||
|
||||
=== "docker compose (Plugin)"
|
||||
|
||||
``` bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
=== "docker-compose (Standalone)"
|
||||
|
||||
``` bash
|
||||
docker-compose up -d
|
||||
```
|
||||
|
||||
Siehe "acme-mailcow" und "nginx-mailcow" Logs, wenn etwas fehlschlägt
|
|
@ -26,7 +26,19 @@ server {
|
|||
}
|
||||
```
|
||||
|
||||
Save and restart Nginx: `docker compose restart nginx-mailcow`.
|
||||
Save and restart Nginx:
|
||||
|
||||
=== "docker compose (Plugin)"
|
||||
|
||||
``` bash
|
||||
docker compose restart nginx-mailcow
|
||||
```
|
||||
|
||||
=== "docker-compose (Standalone)"
|
||||
|
||||
``` bash
|
||||
docker-compose restart nginx-mailcow
|
||||
```
|
||||
|
||||
Now open `mailcow.conf` and find `ADDITIONAL_SAN`.
|
||||
Add `webmail.example.org` to this array, don't use quotes!
|
||||
|
@ -35,4 +47,18 @@ Add `webmail.example.org` to this array, don't use quotes!
|
|||
ADDITIONAL_SAN=webmail.example.org
|
||||
```
|
||||
|
||||
Run `docker compose up -d`. See "acme-mailcow" and "nginx-mailcow" logs if anything fails.
|
||||
Run the command to apply the changes:
|
||||
|
||||
=== "docker compose (Plugin)"
|
||||
|
||||
``` bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
=== "docker-compose (Standalone)"
|
||||
|
||||
``` bash
|
||||
docker-compose up -d
|
||||
```
|
||||
|
||||
See "acme-mailcow" and "nginx-mailcow" logs if anything fails.
|
Laden …
In neuem Issue referenzieren