feat: add support for HTTP proxy configuration and display status in dashboard
CI / lint-and-test (push) Has been cancelled

This commit is contained in:
2026-07-12 21:39:21 +02:00
parent afb360c3ad
commit ec3cea94c9
6 changed files with 133 additions and 33 deletions
+9
View File
@@ -38,6 +38,15 @@
{{ data.last_scheduler.strftime('%Y-%m-%d %H:%M:%S') if data.last_scheduler else 'Never' }}
</div>
</div>
<div class="card">
<div style="font-size: 12px; color: #a0a0b0; text-transform: uppercase;">HTTP Proxy</div>
<div style="font-size: 32px; font-weight: 700; margin-top: 8px; color: {{ '#0f9b58' if data.proxy_enabled else '#e94560' }};">
{{ 'Enabled' if data.proxy_enabled else 'Disabled' }}
</div>
<div style="font-size: 12px; color: #a0a0b0; margin-top: 4px;">
{{ 'Outbound scraping uses the proxy' if data.proxy_enabled else 'Outbound scraping goes direct' }}
</div>
</div>
</div>
{% endif %}
{% endblock %}