1 Commits
rose ... Maxi

Author SHA1 Message Date
Maximilian Walzer
1f550088a4 HTTPS Setup mit Docker, Nginx und Let's Encrypt 2025-12-17 09:08:17 +01:00
2 changed files with 1 additions and 14 deletions

View File

@@ -1,3 +1,3 @@
FROM nginx:alpine
COPY . /usr/share/nginx/html
EXPOSE 8080
EXPOSE 80

View File

@@ -15,19 +15,6 @@ server {
}
}
# Nginx Metrics für Prometheus
server {
listen 8081; # interner Port nur für Exporter
server_name snake.s-martika.com;
location /status {
stub_status;
allow all;
}
}
# HTTPS Server
server {
listen 443 ssl http2;