{% extends "base.html" %} {% block headline %}

Configuration for "{{project}}"

{% endblock%} {% block content %} {{ super() }}
{% if project in apps %}

Loophost address: https://{{project}}.{{config['fqdn']}}

Public address: {% if project in share %} https://{{project}}.{{config["tunnel"]}} {% else %} {% if config["tunnel"] %} (disabled) {% else %} (disabled) {% endif %} {% endif %}

{% else %}

Configure your new app:

{% endif %}
App Address:

Your application can run on a local network port, or a unix domain socket.

If it's running on a network port, make sure the address above starts with the full http://localhost, for example http://localhost:8000.

If you're using a unix socket (which is much faster), use the full path to the socket (including a starting /). For example, /tmp/myapp.soc.


{% if project in apps %}

Public sharing will open up a remote tunnel that allows other people in the world to visit your application, at a dedicated address.

This will remove this app from loophost entirely, and disconnect any shared tunnels as well.

<- Back to application list

{% endif %}
{% endblock %}