Simple start

This commit is contained in:
2026-02-11 11:46:23 +01:00
parent f14515e9cf
commit 0cbff0440d
2 changed files with 82 additions and 0 deletions

22
docker-compose.simple.yml Normal file
View File

@@ -0,0 +1,22 @@
version: '3.8'
services:
linkedin-posts:
build: .
container_name: linkedin-posts
restart: unless-stopped
ports:
- "127.0.0.1:8001:8001" # Nur lokal erreichbar
env_file:
- .env
environment:
- PYTHONPATH=/app
- PORT=8001
volumes:
- ./logs:/app/logs
healthcheck:
test: ["CMD", "python", "-c", "import httpx; httpx.get('http://localhost:8001/login', timeout=5)"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s

60
nginx-site.conf Normal file
View File

@@ -0,0 +1,60 @@
# Nginx Config für linkedin.onyva.dev
# Füge das zur bestehenden Nginx-Config hinzu (z.B. in Coolify oder /etc/nginx/sites-available/)
server {
listen 80;
server_name linkedin.onyva.dev;
# Let's Encrypt ACME Challenge (für SSL)
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
# Redirect zu HTTPS
location / {
return 301 https://$host$request_uri;
}
}
server {
listen 443 ssl http2;
server_name linkedin.onyva.dev;
# SSL Zertifikate (passe den Pfad an)
ssl_certificate /etc/letsencrypt/live/linkedin.onyva.dev/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/linkedin.onyva.dev/privkey.pem;
# SSL Settings
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
# Security Headers
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
add_header X-Frame-Options "SAMEORIGIN" always;
add_header X-Content-Type-Options "nosniff" always;
# Logs
access_log /var/log/nginx/linkedin-access.log;
error_log /var/log/nginx/linkedin-error.log;
# Client Max Body Size (für Bild-Uploads)
client_max_body_size 10M;
# Proxy zu Docker Container
location / {
proxy_pass http://127.0.0.1:8001;
proxy_http_version 1.1;
# Proxy Headers
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# Timeouts
proxy_connect_timeout 60s;
proxy_send_timeout 60s;
proxy_read_timeout 60s;
}
}