forked from venetoarpa/Arpav-PPCV-backend
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a67074
commit 6c6842c
Showing
7 changed files
with
103 additions
and
65 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 was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Static configuration file for traefik | ||
# | ||
# In this file we mostly configure providers, entrypoints and security. | ||
# Routers, the other major part of a traefik configuration, form the | ||
# so-called 'dynamic configuration' and in this case are gotten from | ||
# the labels associated with the docker provider | ||
# | ||
# More info: | ||
# | ||
# https://doc.traefik.io/traefik/ | ||
|
||
[accessLog] | ||
|
||
[entryPoints] | ||
[entryPoints.web] | ||
address = ":80" | ||
|
||
[providers] | ||
|
||
[providers.docker] | ||
exposedByDefault = false | ||
|
||
[api] | ||
insecure = true |
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,34 @@ | ||
# Static configuration file for traefik | ||
# | ||
# In this file we mostly configure providers, entrypoints and security. | ||
# Routers, the other major part of a traefik configuration, form the | ||
# so-called 'dynamic configuration' and in this case are gotten from | ||
# the labels associated with the docker provider | ||
# | ||
# More info: | ||
# | ||
# https://doc.traefik.io/traefik/ | ||
|
||
[accessLog] | ||
|
||
[entryPoints] | ||
[entryPoints.webSecure] | ||
address = ":443" | ||
|
||
[entryPoints.webSecure.forwardedHeaders] | ||
insecure = true | ||
|
||
[providers] | ||
|
||
[providers.docker] | ||
exposedByDefault = false | ||
|
||
[certificatesResolvers.letsEncryptResolver.acme] | ||
email = "[email protected]" | ||
storage = "/opt/traefik/certs/acme.json" | ||
|
||
# Default: "https://acme-v02.api.letsencrypt.org/directory" | ||
# the default is the production lets encrypt server | ||
# caServer = "https://acme-staging-v02.api.letsencrypt.org/directory" | ||
|
||
[certificatesResolvers.letsEncryptResolver.acme.tlsChallenge] |