From 8180513e3c95124254d6efa9faf9992fab50a134 Mon Sep 17 00:00:00 2001 From: Bubka <858858+Bubka@users.noreply.github.com> Date: Wed, 17 Jan 2024 13:29:09 +0000 Subject: [PATCH] [Auto] Update docker-compose file --- docs/static/docker-compose.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/static/docker-compose.yml b/docs/static/docker-compose.yml index 08e1e4e..66cfaf3 100644 --- a/docs/static/docker-compose.yml +++ b/docs/static/docker-compose.yml @@ -24,13 +24,17 @@ services: # This variable must match your installation's external address. # Webauthn won't work otherwise. - APP_URL=http://localhost + # If you want to serve js assets from a CDN (like https://cdn.example.com), + # you need to set this custom URL here. + # Otherwise, this should be the exact same value as APP_URL. + - ASSET_URL=http://localhost # Turn this to true if you want your app to react like a demo. # The Demo mode reset the app content every hours and set a generic demo user. - IS_DEMO_APP=false # The log channel defines where your log entries go to. - # 'daily' is the default logging mode giving you 5 daily rotated log files in /storage/logs/. - # Several other options exist. You can use 'single' for one big fat error log (not recommended). - # Also available are 'syslog', 'errorlog' and 'stdout' which will log to the system itself. + # 'daily' is the default logging mode giving you 7 daily rotated log files in /storage/logs/. + # Also available are 'errorlog', 'syslog', 'stderr', 'papertrail', 'slack' and a 'stack' channel + # to combine multiple channels into a single one. - LOG_CHANNEL=daily # Log level. You can set this from least severe to most severe: # debug, info, notice, warning, error, critical, alert, emergency