This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# By default, Symfony logs will not appear by default in the logs on the DeltaBlue.Cloud platform. | |
# When using Monolog, you can add a handler with type set to `error_log`. | |
# This will send all logs to the PHP error logs, and will let the platform indext it to show them. | |
monolog: | |
handlers: | |
main: | |
type: error_log | |
level: debug |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RewriteEngine On | |
RewriteCond %{HTTP_HOST} !^www\. [NC] | |
RewriteRule ^(.*)$ %{HTTP:X-Forwarded-Proto}://www.%{HTTP_HOST}/$1 [R=301,L] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
|-------------------------------------------------------------------------- | |
| Log Channels | |
|-------------------------------------------------------------------------- | |
| | |
| Here you may configure the log channels for your application. Out of | |
| the box, Laravel uses the Monolog PHP logging library. This gives | |
| you a variety of powerful log handlers / formatters to utilize. | |
| | |
| Available Drivers: "single", "daily", "slack", "syslog", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
|-------------------------------------------------------------------------- | |
| Logging Configuration | |
|-------------------------------------------------------------------------- | |
| | |
| Here you may configure the log settings for your application. Out of | |
| the box, Laravel uses the Monolog PHP logging library. This gives | |
| you a variety of powerful log handlers / formatters to utilize. | |
| | |
| Available Settings: "single", "daily", "syslog", "errorlog" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# --- | |
# Update your odoo code so the root user check is disabled. (openerp/cli/server.py:52 (check_root_user()) | |
# | |
# Before running `lando start` comment the `command` line. | |
# When this is done, uncomment the `command` line and then run `lando restart`. | |
# | |
# Next, run `docker ps` to check on what external port the odoo service (internal 8069) is running. | |
# --- | |
name: odoo | |
services: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @file | |
* Usage: | |
* 1. remove the V3 AWS PHP sdk when present | |
* composer remove "league/flysystem-aws-s3-v3" | |
* 2. install the V3 AWS PHP sdk when present | |
* composer require "league/flysystem-aws-s3-v2" | |
* 3. Add the provider to your config/app.php: |