{% extends "admin_base.html" %} {% block title %}Viewing Node{% endblock %} {% block content %}
{% if flash.info is defined %} {{ flash.info.0|raw }} {% endif %}

Basic Information


Please enter the FQDN for this node. If you do not have one please enter its IP address. This must be a valid FQDN if using a signed SSL certificate. (Do not include the http://, www, or any trailing information. [i.e. enter only node.example.com])

Please update your Scales configuration file and add this as a token that can connect and use it. You do not need to click the button below once you've done this. Whats this?


Scales Configuration File
{
	"listen": {
		"sftp": {{ node.daemon_sftp }},
		"rest": {{ node.daemon_listen }},
		"socket": {{ node.daemon_console }},
		"uploads": {{ node.daemon_upload }}
	},
	"urls": {
		"repo": "{{ settings.master_url }}auth/remote/pack",
		"download": "{{ settings.master_url }}auth/remote/download",
		"install": "{{ settings.master_url }}auth/remote/install-progress"
	},
	"ssl": {
		"key": "https.key",
		"cert": "https.pem"
	},
	"basepath": "{{ node.daemon_base_dir }}",
	"keys": [
		"{{ node.daemon_secret }}"
	],
	"upload_maxfilesize": 100000000
}

IP & Port Allocation


{% for ip, ports in portlisting %} {% endfor %}
IP Address Ports
{{ ip }}
Add Port(s)
{% for port, avaliable in ports %} {% if loop.index is odd %} {% if avaliable == 1 %} {% else %} {% endif %}   {{ port }}
{% endif %} {% endfor %}
{% for port, avaliable in ports %} {% if loop.index is even %} {% if avaliable == 1 %} {% else %} {% endif %}   {{ port }}
{% endif %} {% endfor %}
Add New IP Address
Key

(Port Available; Click to Delete Port)

(Port Used; Cannot Delete)

SFTP Settings


{% endblock %} {% block javascript %} {% endblock %}