{% extends 'base.html' %} {% load i18n %} {% load static %} {% block extra_css %} {% endblock %} {% block content %}

{% trans "Settings" %}

{% csrf_token %}

{% trans "Public Sharing Domain" %}

{% trans "Domain (with protocol) used for public file sharing links. Leave blank to use the same domain as the app." %}
{% trans "Example:" %} https://go.example.com

{% if site_settings.public_sharing_domain %}

{% trans "Active. Public links will use:" %} {{ site_settings.public_sharing_domain }}/public/files/…

{% else %}

{% trans "Not set. Public links will use the app's own domain." %}

{% endif %}

{% trans "Max Concurrent Screenshot Jobs" %}

{% trans "Maximum number of Chromium browser instances running simultaneously for screenshots. Reduce this if the container runs out of memory (OOM)." %}

{% trans "instances" %}

{% trans "Recommended: 1–3 for containers with limited RAM." %}

{% trans "Page Processing Interval" %}

{% trans "How often (in seconds) the scheduler checks for pending pages and queues them for metadata extraction." %}

{% trans "seconds" %}

{% trans "Default: 120. Range: 10–3600. Changes take effect immediately." %}

{% trans "Screenshot Retry Interval" %}

{% trans "How often (in seconds) the scheduler checks for stuck or pending screenshots and retries them." %}

{% trans "seconds" %}

{% trans "Default: 120. Range: 10–3600. Changes take effect immediately." %}

{% trans "Shared Posts" %}

{% trans "Posts currently accessible via public links. Disable to return to 404." %}

{% trans "No posts are currently shared publicly." %}
{% trans "Loading…" %}
{% endblock %} {% block extra_js %} {% endblock %}