Skip to content

Commit 20325d9

Browse files
committed
Fix links
1 parent 18e24ee commit 20325d9

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docs/guide/bundles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ see the [How to Remove a Bundle]([[= symfony_doc =]]/bundles/remove.html) instru
5454
|[ezsystems/ezplatform-rest](https://github.com/ezsystems/ezplatform-rest)|REST API|
5555
|[ezsystems/ezplatform-richtext](https://github.com/ezsystems/ezplatform-richtext)|Field Type for supporting rich-formatted text stored in a structured XML format|
5656
|[ezsystems/ezplatform-search](https://github.com/ezsystems/ezplatform-search)|Common search functionalities|
57-
|[ezsystems/ezplatform-solr-search-engine](https://github.com/ezsystems/ezplatform-solr-search-engine)|[Solr-powered](http://lucene.apache.org/solr/) search handler|
57+
|[ezsystems/ezplatform-solr-search-engine](https://github.com/ezsystems/ezplatform-solr-search-engine)|[Solr-powered](https://solr.apache.org/) search handler|
5858
|[ezsystems/ezplatform-standard-design](https://github.com/ezsystems/ezplatform-standard-design)|Standard design and theme to be handled by `ezplatform-design-engine`|
5959
|[ezsystems/ezplatform-user](https://github.com/ezsystems/ezplatform-user)|User management|
6060

docs/guide/clustering_aws_s3.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ meaning AWS S3 will be used to store binary files.
1414
## Set up AWS S3 account
1515

1616
1. Go to <https://aws.amazon.com/> and create an account.
17-
An [existing Amazon account can be used](http://docs.aws.amazon.com/AmazonS3/latest/gsg/SigningUpforS3.html).
18-
1. [Choose a region](http://docs.aws.amazon.com/storagegateway/latest/userguide/available-regions-intro.html).
17+
An [existing Amazon account can be used](https://docs.aws.amazon.com/AmazonS3/latest/userguide/GetStartedWithS3.html#sign-up-for-aws).
18+
1. [Choose a region](https://docs.aws.amazon.com/storagegateway/latest/vgw/available-regions-intro.html).
1919
The example below uses EU (Ireland): `eu-west-1`
2020
1. Create a bucket in your chosen region and make note of the bucket name:
21-
<http://docs.aws.amazon.com/AmazonS3/latest/gsg/CreatingABucket.html>.
21+
<https://docs.aws.amazon.com/AmazonS3/latest/userguide/GetStartedWithS3.html#creating-bucket>.
2222
1. Go to the [IAM Management Console](https://console.aws.amazon.com/iam/home#/users) and create a user.
23-
See <http://docs.aws.amazon.com/AmazonS3/latest/dev/s3-access-control.html>.
23+
See <https://docs.aws.amazon.com/AmazonS3/latest/userguide/security-iam.html>.
2424
1. Then create a group and assign the user to the group.
2525
1. Assign policies to the group. The `AmazonS3FullAccess` policy gives read/write access to your bucket.
2626
1. Still in the IAM console, view the user you created. Click the "Security credentials" tab.
@@ -30,7 +30,7 @@ The secret key cannot be retrieved again after the key has been created, so don'
3030

3131
!!! note
3232

33-
Make sure that your bucket is [configured as Public](https://docs.aws.amazon.com/AmazonS3/latest/user-guide/block-public-access-bucket.html) to avoid facing 403 errors, as the current S3 handler is meant to store files publicly so they can be served directly from S3.
33+
Make sure that your bucket is [configured as Public](https://docs.aws.amazon.com/AmazonS3/latest/userguide/configuring-block-public-access-bucket.html) to avoid facing 403 errors, as the current S3 handler is meant to store files publicly so they can be served directly from S3.
3434

3535
## Set up [[= product_name =]] for AWS S3
3636

@@ -77,7 +77,7 @@ ez_io:
7777
You can configure multiple handlers.
7878

7979
For example, you could configure one called `gcloud_storage` for a third-party (community-supported)
80-
[Google Cloud Storage adapter](https://github.com/thephpleague/flysystem#community-supported).
80+
[Google Cloud Storage adapter](https://github.com/thephpleague/flysystem#officially-supported-adapters).
8181

8282
In your [[= product_name =]] system settings, e.g. `config/packages/ezplatform.yaml`, enable the binary data handler:
8383

docs/guide/configuration/config_repository.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ ezplatform:
2626
2727
Legacy storage engine is the default storage engine for the Repository.
2828
29-
It uses [Doctrine DBAL](http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/) (Database Abstraction Layer).
29+
It uses [Doctrine DBAL](https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/) (Database Abstraction Layer).
3030
Database settings are supplied by [DoctrineBundle](https://github.com/doctrine/DoctrineBundle).
31-
As such, you can refer to [DoctrineBundle's documentation](https://github.com/doctrine/DoctrineBundle/blob/master/Resources/doc/configuration.rst#doctrine-dbal-configuration).
31+
As such, you can refer to [DoctrineBundle's documentation](https://github.com/doctrine/DoctrineBundle/blob/2.3.x/Resources/doc/configuration.rst#doctrine-dbal-configuration).
3232
3333
If no Repository is specified for a SiteAccess or SiteAccess group,
3434
the first Repository defined under `ezplatform.repositories` will be used:
@@ -83,7 +83,7 @@ ezplatform:
8383
prefix: eZ\Bundle\EzPublishCoreBundle\Entity
8484
```
8585

86-
Refer to [DoctrineBundle documentation](https://symfony.com/doc/3.4/reference/configuration/doctrine.html)
86+
Refer to [DoctrineBundle documentation](https://symfony.com/doc/5.x/reference/configuration/doctrine.html)
8787
for more information.
8888

8989
!!! note

0 commit comments

Comments
 (0)