From 65f781af43288e299338d4b4a08fc669fbd91b82 Mon Sep 17 00:00:00 2001 From: Reckless_Satoshi Date: Sun, 26 Jun 2022 15:43:57 -0700 Subject: [PATCH] functional, but chat does not send messages (it does receive) --- .env-sample | 2 ++ docker-compose.yml | 8 +------- robosats/settings.py | 2 ++ 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.env-sample b/.env-sample index 62c445ab..7d9e3eb2 100644 --- a/.env-sample +++ b/.env-sample @@ -28,6 +28,8 @@ MARKET_PRICE_APIS = https://blockchain.info/ticker, https://api.yadio.io/exrates # Host e.g. robosats.com HOST_NAME = '' HOST_NAME2 = '' +I2P_ALIAS = '' +I2P_LONG = '' LOCAL_ALIAS = '' # SECURITY WARNING: keep the secret key used in production secret! diff --git a/docker-compose.yml b/docker-compose.yml index 3fb570a9..500ce8f5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -93,11 +93,9 @@ services: i2p: image: geti2p/i2p container_name: i2p-dev + network_mode: host volumes: - ./docker/i2p/i2pconfig:/i2p/.i2p - - ./docker/i2p/i2ptorrents:/i2psnark - restart: unless-stopped - network_mode: service:tor tor: build: ./docker/tor @@ -111,10 +109,6 @@ services: - /mnt/development/tor/config:/etc/tor ports: - 8000:8000 - - 4444:4444 - # - 8215:12345 - - 7658:7658 - - 8001:7657 lnd: build: ./docker/lnd diff --git a/robosats/settings.py b/robosats/settings.py index 9d739747..8390d756 100644 --- a/robosats/settings.py +++ b/robosats/settings.py @@ -39,6 +39,8 @@ AVATAR_ROOT = STATIC_ROOT + "assets/avatars/" ALLOWED_HOSTS = [ config("HOST_NAME"), config("HOST_NAME2"), + config("I2P_ALIAS"), + config("I2P_LONG"), config("LOCAL_ALIAS"), "127.0.0.1", ]