-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
was missing important snippets for raw tcp/udp link containers in the…
… last commit.
- Loading branch information
1 parent
e19b87c
commit 4b3cf22
Showing
3 changed files
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
EXPOSE=${SERVICE}:${BACK_PORT} | ||
GATEWAY_ENDPOINT=${GATEWAY_ENDPOINT} | ||
GATEWAY_LINK_WG_PUBKEY=${GATEWAY_LINK_WG_PUBKEY} | ||
LINK_DOMAIN=${LINK_DOMAIN} | ||
GATEWAY_CLIENT_WG_PRIVKEY=${WG_PRIVKEY} | ||
FORWARD_ONLY=${FORWARD_ONLY} | ||
NEW_FORWARDING_BEHAVIOR: true | ||
BACK_PORT: ${BACK_PORT} | ||
CENTER_PORT: ${CENTER_PORT} | ||
SERVICE: ${SERVICE} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
link: | ||
image: fractalnetworks/gateway-client:latest | ||
environment: | ||
LINK_DOMAIN: ${LINK_DOMAIN} | ||
EXPOSE: ${SERVICE}:${BACK_PORT} | ||
GATEWAY_CLIENT_WG_PRIVKEY: ${WG_PRIVKEY} | ||
GATEWAY_LINK_WG_PUBKEY: ${GATEWAY_LINK_WG_PUBKEY} | ||
GATEWAY_ENDPOINT: ${GATEWAY_ENDPOINT} | ||
# Remove following to disable basic authentication | ||
BASIC_AUTH: admin:admin | ||
# Remove following line to get certs from Let's Encrypt | ||
TLS_INTERNAL: true | ||
# CADDY_TLS_PROXY: true | ||
# CADDY_TLS_INSECURE: true | ||
FORWARD_ONLY: ${FORWARD_ONLY} | ||
NEW_FORWARDING_BEHAVIOR: true | ||
BACK_PORT: ${BACK_PORT} | ||
CENTER_PORT: ${CENTER_PORT} | ||
SERVICE: ${SERVICE} | ||
restart: unless-stopped | ||
cap_add: | ||
- NET_ADMIN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters