Difference between revisions of "Drupal"

From Wasya Wiki
Jump to: navigation, search
(Disable caching)
(Disable caching)
Line 58: Line 58:
 
From: https://www.drupal.org/docs/develop/development-tools/disable-caching
 
From: https://www.drupal.org/docs/develop/development-tools/disable-caching
  
* Add the settings.local.php (but this was actually unnecessary?) and
+
* Add the settings.local.php and
 
* Modify development.services.yml:
 
* Modify development.services.yml:
  

Revision as of 02:34, 1 September 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