server { listen 80; server_name whitelist.firefrostgaming.com; # Redirect all HTTP to HTTPS return 301 https://$server_name$request_uri; } server { listen 443 ssl http2; server_name whitelist.firefrostgaming.com; # SSL certificates (will be generated by Certbot) ssl_certificate /etc/letsencrypt/live/whitelist.firefrostgaming.com/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/whitelist.firefrostgaming.com/privkey.pem; # SSL configuration ssl_protocols TLSv1.2 TLSv1.3; ssl_ciphers HIGH:!aNULL:!MD5; ssl_prefer_server_ciphers on; # Proxy to Flask application location / { proxy_pass http://127.0.0.1:5001; 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; } # Logging access_log /var/log/nginx/whitelist.access.log; error_log /var/log/nginx/whitelist.error.log; }