content:serverbasics:docker-caddy
Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen der Seite angezeigt.
| Nächste Überarbeitung | Vorherige Überarbeitung | ||
| content:serverbasics:docker-caddy [2024/01/08 20:26] – angelegt obel1x | content:serverbasics:docker-caddy [2025/06/05 23:27] (aktuell) – [Create Caddy Yaml] obel1x | ||
|---|---|---|---|
| Zeile 3: | Zeile 3: | ||
| Caddy is a powerful full featured webserver, which is also easy to use and setup. | Caddy is a powerful full featured webserver, which is also easy to use and setup. | ||
| - | In this guide i will show how to use Caddy as SSL- Proxy for your services to deliver them to the internet via name- based virtual hosting. | + | In this guide i will show how to use Caddy as SSL- Reverse- Proxy for your services to deliver them to the internet via name- based virtual hosting. |
| ===== Prerequisites ===== | ===== Prerequisites ===== | ||
| Zeile 11: | Zeile 11: | ||
| ===== DNS- Records ===== | ===== DNS- Records ===== | ||
| - | You will also need a domainname like '' | + | You will also need a domainname like '' |
| - | ==== Register some Domain ==== | + | |
| - | There are many free Domainproviders out there. I chose dynv6 ( [[https:// | + | When your service |
| - | + | ||
| - | bla (not ready) blah - setup IPV4 , setup IPV6, bla link to [[.: | + | |
| - | + | ||
| - | ==== Define services ==== | + | |
| - | + | ||
| - | After that, create an A-Name record (or AAAA- Name for ipv6) per service | + | |
| ===== Create Caddy Yaml ===== | ===== Create Caddy Yaml ===== | ||
| Zeile 30: | Zeile 23: | ||
| For me, this would be '' | For me, this would be '' | ||
| Change to that directory and create the following docker-compose.yml file in it, putting in the following: | Change to that directory and create the following docker-compose.yml file in it, putting in the following: | ||
| - | < | ||
| - | |||
| - | version: " | ||
| + | < | ||
| services: | services: | ||
| caddy: | caddy: | ||
| Zeile 48: | Zeile 39: | ||
| cap_add: | cap_add: | ||
| - NET_ADMIN | - NET_ADMIN | ||
| - | # initially i wanted | + | healthcheck: |
| - | # it turned out not to work in rootless- mode for security reasons | + | test: "wget --no-verbose --tries=1 --spider https:// |
| - | # so don't use host- mode. to access local services take the hostname directly, maybe define it static and add it to / | + | interval: " |
| - | # e.g. pcserver: | + | timeout: " |
| - | # NOT localhost: | + | start_period: |
| + | retries: 3 | ||
| + | # Be sure, that docker daemon has access | ||
| + | # This can be archived by: | ||
| + | # setcap cap_net_bind_service=+ep / | ||
| + | # | ||
| + | # To access local services, take the hostname directly, maybe define it static and add it to / | ||
| + | # Mind, that the ports must be pubilshed by the other containers to the host via ports or expose, or add them to the network | ||
| + | # e.g. pcserver: | ||
| + | #Do NOT use networkmode: | ||
| # network_mode: | # network_mode: | ||
| - | # set / | ||
| - | # net.ipv4.ip_unprivileged_port_start = 80 | ||
| - | # net.ipv4.ip_unprivileged_port_start = 443 | ||
| ports: | ports: | ||
| - " | - " | ||
| Zeile 64: | Zeile 61: | ||
| volumes: | volumes: | ||
| caddy_data: | caddy_data: | ||
| - | driver: local | ||
| - | driver_opts: | ||
| - | device: "" | ||
| - | type: "" | ||
| - | o: " | ||
| caddy_config: | caddy_config: | ||
| - | driver: local | ||
| - | driver_opts: | ||
| - | device: "" | ||
| - | type: "" | ||
| - | o: " | ||
| caddy_certs: | caddy_certs: | ||
| - | driver: local | ||
| - | driver_opts: | ||
| - | device: "" | ||
| - | type: "" | ||
| - | o: " | ||
| caddy_sites: | caddy_sites: | ||
| - | driver: local | + | |
| - | | + | networks: |
| - | | + | # Still needs to be defined while without it won't enable ipv6 |
| - | type: "" | + | default: |
| - | o: " | + | |
| + | | ||
| </ | </ | ||
| + | |||
| + | Also, check that your Firewall has those Port 80 + 443 open on your host and that Port Forwarding in your Router is enabled for ipv4 and for ipv6. | ||
| + | |||
| + | |||
| ===== Caddy Configuration ===== | ===== Caddy Configuration ===== | ||
| if you omit the Caddyfile, the server will already work, but we can directly Skip those tests and create the file '' | if you omit the Caddyfile, the server will already work, but we can directly Skip those tests and create the file '' | ||
| < | < | ||
| - | https:// | + | |
| + | https:// | ||
| header Strict-Transport-Security max-age=31536000; | header Strict-Transport-Security max-age=31536000; | ||
| - | reverse_proxy | + | reverse_proxy |
| } | } | ||
| </ | </ | ||
| + | |||
| + | replace // | ||
| + | |||
| + | Don't use localhost - see above. If you do not have a clue which hostname you have, better specify some fixed one which you can freely chose and edit ''/ | ||
| + | ===== Fetch and run the Caddy Container ===== | ||
| + | |||
| + | Thats all - use '' | ||
| + | |||
| + | If the Caddy doe not return any Errors, you now have a powerful proxy, that can transparently deliver your Dockers to the world with SSL- encryption enabled. | ||
content/serverbasics/docker-caddy.1704741977.txt.gz · Zuletzt geändert: von obel1x
