{% extends "bucket/templates/main/user_cp/_base.html" %} {% block options %} {% macro render_field(field, label_visible=true) -%}
{% if field.type == "BooleanField" %}
{% else %} {% if (field.type != 'HiddenField' and field.type !='CSRFTokenField') and label_visible %} {% endif %} {{ field(class_='form-control', **kwargs) }} {% if field.errors %} {% for e in field.errors %}

{{ e }}

{% endfor %} {% endif %} {% endif %}
{%- endmacro %}
The location to the service you want to add. Can be a hostname or address. Use the 'validate service(s)' to validate this service.
HTTP(s):

example.org


FTP:

192.168.1.52


Must be a valid port number *surprise* https://en.wikipedia.org/wiki/Internet_Protocol The directory at which to start crawling from. This will become the root directory in the Findex file browser.
Example:

/media/movies/


May stay on default, unless you require a specific type of authentication for the currently selected protocol.

For example, if you have picked HTTP as the protocol and filled in authentication credentials, HTTP BASIC will be used by default, unless you specify otherwise.

url prefix as it will be shown on the front-end. The username to authenticate with. The password to authenticate with. The string to identify ourselves with against the service. Wait X seconds between each request/connection.

Add Service


{{ render_field(form.server_address) }} {{ render_field(form.resource_port) }} {{ render_field(form.resource_protocol) }} {{ render_field(form.basepath) }} {{ render_field(form.display_url) }} {{ render_field(form.auth_type) }} {{ render_field(form.auth_user) }} {{ render_field(form.auth_pass) }}

Add mulitple


Options


{{ render_field(form.web_user_agent) }} {{ render_field(form.throttle_connections) }} {{ render_field(form.recursive_sizes) }}
{% endblock %}