this repo has no description smallweb.run
smallweb
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

add Caddy configuration and Docker Compose files for local development

pomdtr 3bb11735 2cd3179c

+31
+2
CONTRIBUTING.md
··· 10 10 11 11 You can follow the instructions from the [docs](https://www.smallweb.run/docs/hosting/local/) to find out how to install caddy locally. 12 12 13 + > [!WARNING] Make sure to trust the certificate generated by caddy by running the `caddy trust` command. 14 + 13 15 Then, all debug commands will use the example workspace located in the `examples` folder.
+3
Caddyfile
··· 1 + http://smallweb.localhost, http://*.smallweb.localhost, smallweb.localhost, *.smallweb.localhost { 2 + reverse_proxy smallweb:7777 3 + }
+14
docker-compose.dev.yml
··· 1 + services: 2 + smallweb: 3 + build: 4 + context: . 5 + dockerfile: Dockerfile 6 + volumes: 7 + - ./examples:/smallweb 8 + caddy: 9 + image: caddy:latest 10 + ports: 11 + - "80:80" 12 + - "443:443" 13 + volumes: 14 + - ./Caddyfile:/etc/caddy/Caddyfile
+12
docker-compose.yml
··· 1 + services: 2 + smallweb: 3 + image: ghcr.io/pomdtr/smallweb:latest 4 + volumes: 5 + - ./examples:/smallweb 6 + caddy: 7 + image: caddy:latest 8 + ports: 9 + - "80:80" 10 + - "443:443" 11 + volumes: 12 + - ./Caddyfile:/etc/caddy/Caddyfile