You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
483 B
19 lines
483 B
# Production environment override |
|
services: |
|
php: |
|
build: |
|
context: . |
|
target: frankenphp_prod |
|
environment: |
|
APP_SECRET: ${APP_SECRET} |
|
TRUSTED_PROXIES: ${TRUSTED_PROXIES:-127.0.0.0/8,10.0.0.0/8} |
|
SERVER_NAME: :80 |
|
MERCURE_PUBLISHER_JWT_KEY: ${CADDY_MERCURE_JWT_SECRET} |
|
MERCURE_SUBSCRIBER_JWT_KEY: ${CADDY_MERCURE_JWT_SECRET} |
|
ports: |
|
# HTTP |
|
- target: 80 |
|
published: 80 |
|
protocol: tcp |
|
worker: |
|
volumes: []
|
|
|