Difference between revisions of "Drupal"
From Wasya Wiki
| Line 53: | Line 53: | ||
] | ] | ||
} | } | ||
| + | </pre> | ||
| + | |||
| + | == Disable caching == | ||
| + | From: https://www.drupal.org/docs/develop/development-tools/disable-caching | ||
| + | |||
| + | * Add the settings.local.php, and | ||
| + | * Modify development.services.yml: | ||
| + | |||
| + | <pre> | ||
| + | parameters: | ||
| + | http.response.debug_cacheability_headers: true | ||
| + | twig.config: | ||
| + | debug: true | ||
| + | auto_reload: true | ||
| + | cache: false | ||
| + | services: | ||
| + | cache.backend.null: | ||
| + | class: Drupal\Core\Cache\NullBackendFactory | ||
</pre> | </pre> | ||
Revision as of 15:41, 30 August 2023
Install & Configure
composer create-project drupal/recommended-project:9.5.10 html php core/scripts/drupal generate-theme ish_drupal_theme
composer require 'drupal/devel:^5.1' composer require 'drupal/s3fs:^3.3'
Configure Apache
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
Configure s3fs
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Statement0",
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:ListBucketVersions"
],
"Resource": [
"arn:aws:s3:::<ze bucket>"
]
},
{
"Sid": "Statement1",
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObjectVersion",
"s3:DeleteObject",
"s3:GetObjectVersion",
"s3:GetObjectAcl",
"s3:PutObjectAcl"
],
"Resource": [
"arn:aws:s3:::<ze bucket>/*"
]
}
]
}
Disable caching
From: https://www.drupal.org/docs/develop/development-tools/disable-caching
- Add the settings.local.php, and
- Modify development.services.yml:
parameters:
http.response.debug_cacheability_headers: true
twig.config:
debug: true
auto_reload: true
cache: false
services:
cache.backend.null:
class: Drupal\Core\Cache\NullBackendFactory