Skip to content

Commit

Permalink
Update .sample-env
Browse files Browse the repository at this point in the history
  • Loading branch information
inciner8r authored Apr 17, 2024
1 parent bcd16fe commit 9057b96
Showing 1 changed file with 28 additions and 24 deletions.
52 changes: 28 additions & 24 deletions .sample-env
Original file line number Diff line number Diff line change
@@ -1,29 +1,33 @@
# Application Parameters
RUNTYPE = "release"
SERVER = "0.0.0.0"
HTTP_PORT = "9080"
GRPC_PORT = "9090"
REGION = "us01"
DOMAIN = "us01.erebrus.com"
GATEWAY_URL= "https://gateway.netsepio.com"
ALLOWED_WALLET=
RUNTYPE=debug
SERVER=0.0.0.0
HTTP_PORT=9080
GRPC_PORT=9090
REGION=EU01
DOMAIN=http://ip_addr:9080
HOST_IP=ip_addr
MASTERNODE_URL=https://dev.gateway.erebrus.io

# Wireguard Specifications
WG_CONF_DIR = "/etc/wireguard"
WG_CLIENTS_DIR = "/etc/wireguard/clients"
WG_INTERFACE_NAME = "wg0.conf"
WG_ENDPOINT_HOST = "endpoint"
WG_ENDPOINT_PORT = "51820"
WG_IPv4_SUBNET = "10.0.0.1/24"
WG_IPv6_SUBNET = "fd9f:0000::10:0:0:1/64"
WG_DNS = "1.1.1.1"
WG_ALLOWED_IP_1 = "0.0.0.0/0"
WG_ALLOWED_IP_2 = "::/0"
WG_PRE_UP = "echo WireGuard PreUp"
WG_POST_UP = "iptables -A FORWARD -i %i -j ACCEPT; iptables -A FORWARD -o %i -j ACCEPT; iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE"
WG_PRE_DOWN = "echo WireGuard PreDown"
WG_POST_DOWN = "iptables -D FORWARD -i %i -j ACCEPT; iptables -D FORWARD -o %i -j ACCEPT; iptables -t nat -D POSTROUTING -o eth0 -j MASQUERADE"
WG_CONF_DIR=/etc/wireguard
WG_CLIENTS_DIR=/etc/wireguard/clients
WG_INTERFACE_NAME=wg0.conf
WG_ENDPOINT_HOST=ip_addr
WG_ENDPOINT_PORT=51820
WG_IPv4_SUBNET=10.0.0.1/24
WG_IPv6_SUBNET=fd9f:0000::10:0:0:1/64
WG_DNS=1.1.1.1
WG_ALLOWED_IP_1=0.0.0.0/0
WG_ALLOWED_IP_2=::/0
WG_PRE_UP=echo WireGuard PreUp
WG_POST_UP=iptables -A FORWARD -i %i -j ACCEPT; iptables -A FORWARD -o %i -j ACCEPT; iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
WG_PRE_DOWN=echo WireGuard PreDown
WG_POST_DOWN=iptables -D FORWARD -i %i -j ACCEPT; iptables -D FORWARD -o %i -j ACCEPT; iptables -t nat -D POSTROUTING -o eth0 -j MASQUERADE
PASETO_EXPIRATION_IN_HOURS=168
AUTH_EULA="I Accept the Erebrus Terms of Service https://erebrus.io/terms.html for accessing the application. Challenge ID: "
AUTH_EULA=I Accept the Erebrus Terms of Service https://erebrus.io/terms.html for accessing the application. Challenge ID:
SIGNED_BY=Erebrus
FOOTER=Erebrus 2024
FOOTER=Erebrus 2024
MASTERNODE_WALLET=0x0
GATEWAY_DOMAIN=https://dev.gateway.erebrus.io
LOAD_CONFIG_FILE=false
MASTERNODE_PEERID=/ip4/35.239.34.5/tcp/9001/p2p/12D3KooWH6NjtNwQ3QRELdjqTce38marCzXkA7hHxnuVmJwc8oJA

0 comments on commit 9057b96

Please sign in to comment.