From 33d9d725543b3dda06433b9b91c7d83665abd11e Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Tue, 31 Dec 2019 14:31:45 +0100 Subject: [PATCH] Update the beginning text --- server.py | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/server.py b/server.py index 5eaae42..e3a7283 100644 --- a/server.py +++ b/server.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + from flask import Flask, request, redirect, url_for from werkzeug.middleware.proxy_fix import ProxyFix import os @@ -29,13 +31,23 @@ Obviously, your name and IPv6 address will be publicly recorded.

You are player: {player} +

Objective

+The objective of this game is to get your hands dirty with IPv6. +To play it, you only need an IPv6 connection and a spare /64 IPv6 +network that you can freely configure. +

Register

Your name:
-

Afterwards register your network -and then make your random ip reachable. +

Afterwards +

Interested in playing IPv6 games are...

@@ -43,10 +55,12 @@ and then make your random ip reachable. {player_list} -

Open Source

+

Open Source @ IPv6Onlyhosting

As usual this project is open source and you can find the source code on code.ungleich.ch. +This website is running on the IPv6OnlyHosting.com infrastructure. + """ @@ -319,4 +333,4 @@ def main(): if __name__ == '__main__': if not os.path.isdir(DB_DIR): os.mkdir(DB_DIR) - app.run(host="::", debug=True) + app.run(host="::1", debug=False)