Possible working configuration?

This commit is contained in:
3wc 2022-03-26 23:19:39 +02:00
parent ff412e7aef
commit 99fd29d57e
3 changed files with 32 additions and 19 deletions

View File

@ -1,15 +1,16 @@
# compy # compy
> One line description of the recipe > Compy is an HTTP/HTTPS forward proxy with content compression/transcoding capabilities.
> One use case is to reduce bandwidth usage when browsing on limited mobile broadband connection.
<!-- metadata --> <!-- metadata -->
* **Category**: Apps * **Category**: Apps
* **Status**: 0 * **Status**: 1, alpha
* **Image**: [`compy`](https://hub.docker.com/r/compy), 4, upstream * **Image**: [`compy`](https://hub.docker.com/r/thecoopcloud/compy), 0, own
* **Healthcheck**: No * **Healthcheck**: No
* **Backups**: No * **Backups**: No
* **Email**: No * **Email**: N/A
* **Tests**: No * **Tests**: No
* **SSO**: No * **SSO**: No
@ -22,3 +23,7 @@
* `abra app deploy <app-name>` * `abra app deploy <app-name>`
For more, see [`docs.coopcloud.tech`](https://docs.coopcloud.tech). For more, see [`docs.coopcloud.tech`](https://docs.coopcloud.tech).
## SSL (and Man-in-the-Middle)

11
compose.ssl.yml Normal file
View File

@ -0,0 +1,11 @@
---
version: "3.8"
services:
app:
command: ["-cert", "/certs/cert.crt", "-key", "/certs/cert.key", "-ca", "/certs/ca.crt", "-cakey", "/certs/ca.key"]
volumes:
- "compy_certs:/certs"
volumes:
compy_certs:

View File

@ -3,7 +3,7 @@ version: "3.8"
services: services:
app: app:
image: nginx:1.20.0 image: thecoopcloud/compy
networks: networks:
- proxy - proxy
deploy: deploy:
@ -11,21 +11,18 @@ services:
condition: on-failure condition: on-failure
labels: labels:
- "traefik.enable=true" - "traefik.enable=true"
- "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=80" - "traefik.tcp.routers.${STACK_NAME}.entrypoints=compy"
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})" - "traefik.tcp.routers.${STACK_NAME}.service=${STACK_NAME}-tcp-service"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure" - "traefik.tcp.routers.${STACK_NAME}.rule=HostSNI(`*`)"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}" - "traefik.tcp.routers.${STACK_NAME}.tls.passthrough=true"
## Redirect from EXTRA_DOMAINS to DOMAIN - "traefik.tcp.services.${STACK_NAME}-tcp-service.loadbalancer.server.port=9999"
#- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
#- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
#- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
- "coop-cloud.${STACK_NAME}.version=" - "coop-cloud.${STACK_NAME}.version="
healthcheck: # healthcheck:
test: ["CMD", "curl", "-f", "http://localhost"] # test: ["CMD", "curl", "-f", "http://localhost"]
interval: 30s # interval: 30s
timeout: 10s # timeout: 10s
retries: 10 # retries: 10
start_period: 1m # start_period: 1m
networks: networks:
proxy: proxy: