-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.5: (BREAKING) simplified config format, improved error output, upd…
…ated proxy entry default value for 'port'
- Loading branch information
default
committed
Aug 13, 2024
1 parent
23e7d06
commit 719693d
Showing
21 changed files
with
193 additions
and
298 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
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 |
---|---|---|
|
@@ -80,12 +80,14 @@ autocert: | |
- ... | ||
# reverse proxy providers configuration | ||
providers: | ||
entry_1: | ||
kind: docker | ||
value: # `FROM_ENV` or full url to docker host | ||
entry_2: | ||
kind: file | ||
value: # relative path of file to `config/` | ||
include: | ||
- providers.yml | ||
- other_file_1.yml | ||
- ... | ||
docker: | ||
local: $DOCKER_HOST | ||
remote-1: tcp://10.0.2.1:2375 | ||
remote-2: ssh://root:[email protected] | ||
``` | ||
[🔼Back to top](#table-of-content) | ||
|
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 |
---|---|---|
|
@@ -11,22 +11,26 @@ | |
# provider: cloudflare | ||
# email: # ACME Email | ||
# domains: # a list of domains for cert registration | ||
# - | ||
# - x.y.z | ||
# options: | ||
# - auth_token: # your zone API token | ||
# - auth_token: c1234565789-abcdefghijklmnopqrst # your zone API token | ||
|
||
# 3. other providers, check readme for more | ||
|
||
providers: | ||
local: | ||
kind: docker | ||
include: | ||
- providers.yml # config/providers.yml | ||
# add some more below if you want | ||
# - file1.yml # config/file_1.yml | ||
# - file2.yml | ||
docker: | ||
# for value format, see https://docs.docker.com/reference/cli/dockerd/ | ||
# i.e. ssh://[email protected]:22, tcp://10.0.2.1:2375 | ||
# use FROM_ENV if you have binded docker socket to /var/run/docker.sock | ||
value: FROM_ENV | ||
providers: | ||
kind: file | ||
value: providers.yml | ||
# $DOCKER_HOST implies unix:///var/run/docker.sock by default | ||
local: $DOCKER_HOST | ||
# add more docker providers if needed | ||
# remote-1: tcp://10.0.2.1:2375 | ||
# remote-2: ssh://root:[email protected] | ||
|
||
# Fixed options (optional, non hot-reloadable) | ||
|
||
# timeout_shutdown: 5 | ||
|
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
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
Oops, something went wrong.