Metainformationen zur Seite
Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Beide Seiten der vorigen RevisionVorhergehende Überarbeitung | |||
digitales:software:docker:nginx [24.04.2025] – gelöscht - Externe Bearbeitung (Unbekanntes Datum) 127.0.0.1 | digitales:software:docker:nginx [24.04.2025] (aktuell) – ↷ Seite von digitales:sdr:software:docker:nginx nach digitales:software:docker:nginx verschoben cs | ||
---|---|---|---|
Zeile 1: | Zeile 1: | ||
+ | ====== Nginx ====== | ||
+ | |||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | |||
+ | Auf dem Docker-Server unter ~/nginx docker-compose.yaml erstellen '' | ||
+ | |||
+ | <code yaml docker-compose.yaml> | ||
+ | version: ' | ||
+ | services: | ||
+ | app: | ||
+ | image: ' | ||
+ | restart: unless-stopped | ||
+ | ports: | ||
+ | # These ports are in format < | ||
+ | - ' | ||
+ | - ' | ||
+ | - ' | ||
+ | # Add any other Stream port you want to expose | ||
+ | # - ' | ||
+ | |||
+ | # Uncomment the next line if you uncomment anything in the section | ||
+ | # environment: | ||
+ | # Uncomment this if you want to change the location of | ||
+ | # the SQLite DB file within the container | ||
+ | # DB_SQLITE_FILE: | ||
+ | |||
+ | # Uncomment this if IPv6 is not enabled on your host | ||
+ | # DISABLE_IPV6: | ||
+ | |||
+ | volumes: | ||
+ | - ./ | ||
+ | - ./ | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||