I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Unverified Commit 23eb1c54 authored by idk's avatar idk
Browse files

fix missing bracket on translation tag on software.html, split up environment...

fix missing bracket on translation tag on software.html, split up environment setup in dockerfile to trade a little space for a lot of time
parent fff7c1f9
No related branches found
No related tags found
No related merge requests found
......@@ -2,15 +2,16 @@ FROM debian:buster
ENV SERVERNAME=geti2p.net
ENV SERVERMAIL=example@geti2p.net
ADD . /var/www/i2p.www
WORKDIR /var/www/i2p.www
## Install the dependencies
RUN apt-get update && \
apt-get -y install apache2 apache2-utils libapache2-mod-wsgi python2-dev python-pip patch python-virtualenv git python-polib && \
apt-get -y install apache2 apache2-utils libapache2-mod-wsgi python2-dev python-pip patch python-virtualenv git python-polib
ADD . /var/www/i2p.www
## Start setting up the site
rm -rfv env && \
RUN rm -rfv env && \
virtualenv --distribute env && \
. env/bin/activate && \
pip install -r etc/reqs.txt && \
......
......@@ -3,7 +3,7 @@
{% block content %}
<h1>{{ _('The I2P Software') }} (I2P)</h1>
<p>{% trans %The I2P Java distribution is the first I2P software gateway and
<p>{% trans %}The I2P Java distribution is the first I2P software gateway and
has been actively developed since 2003. It includes a router, applications, and the ability to manage and customize your own connection with the I2P network using a built in Hidden Services manager{%- endtrans %}</p>
<p>{% trans %}Applications are made available through a webUI that listens at
127.0.0.1:7657. The main page is called the “Router Console,”
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment