deleted: docker-compose.yml renamed: nginx/templates/default.conf.template -> nginx/conf.d/default.conf
21 lines
725 B
Docker
21 lines
725 B
Docker
# === Bluemap Reverse Proxy (Nginx) ===
|
|
# Liefert http://devanturas.net:8100 über HTTPS (via Coolify-Proxy)
|
|
# als iframe-fähige Karte auf map.devanturas.net aus.
|
|
#
|
|
# HTTPS & Domain übernimmt der Coolify-eigene Proxy (Traefik/Caddy).
|
|
# Dieser Container läuft dahinter auf HTTP/Port 80.
|
|
|
|
FROM nginx:1.27-alpine
|
|
|
|
# Statische Nginx-Proxy-Konfiguration in den Container kopieren
|
|
# (inerv /etc/nginx/conf.d/default.conf -> automatisch geladen)
|
|
COPY nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# Konfiguration beim Build validieren (fail-fast)
|
|
RUN nginx -t
|
|
|
|
# Port, an dem der Nginx lauscht (Coolify klinkt hier HTTP an)
|
|
EXPOSE 80
|
|
|
|
# Standard-Startbefehl des nginx-Images wird beibehalten (nginx -g "daemon off;")
|