{% extends "start/base.html" %} {% block title %}Loophost.dev: Local software development with Loophosting{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block body %}
{% block headline %}

Configuration for "{{project}}"

{% endblock %}
{% block content %} {{ super() }}
{% if project not in apps %} We don't know where this app is running yet.

OPTION A: It's using a Unix Socket (fast and great!)
Put the path to the socket in the field below in the form "/tmp/myapp.soc"
OPTION B: It's on another Network Port (supports websockets!)
Put the address of the app in the field below in the form "127.0.0.1:8080"

{% else %} This app is configured but it doesn't appear to be available.
Most likely, this is because:

Try
sudo chmod 666 {{apps[project]}}
and see if that helps.
{% endif %}
{% include "partials/apptable.html" %} Trying to configure loophost for a different app? Just visit https://<yourapp>.{{fqdn}}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% endblock %}