inspiredminds / contao-crawler-authenticator
Allows the Contao Crawler to be logged in as a front end member via Basic Authentication in order to index protected pages.
Fund package maintenance!
fritzmg
Installs: 27
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:contao-bundle
Requires
- php: >=8.2
- contao/core-bundle: ^5.3
- symfony/dependency-injection: ^6.4 || ^7.1
- symfony/event-dispatcher: ^6.4 || ^7.1
- symfony/http-foundation: ^6.4 || ^7.1
- symfony/http-kernel: ^6.4 || ^7.1
- symfony/password-hasher: ^6.4 || ^7.1
- symfony/security-core: ^6.4 || ^7.1
- symfony/security-http: ^6.4 || ^7.1
Requires (Dev)
- contao/easy-coding-standard: ^6.0
- contao/rector: ^1.0
README
Contao Crawler Authenticator
Allows the Contao Crawler to be logged in as a front end member via Basic Authentication in Contao 4.13 in order to index protected pages.
Usage
- Install the extension (zero configuration necessary in the Contao Managed Edition).
- Create a front end member specifically for the Contao Crawler or re-use an existing one where you know the password.
- Assign the member to the appropriate member groups.
- Now choose one of the following options (replace
<username>
and<password>
with the member's credentials):- Pass the member's username and password for every
contao:crawl
execution:CRAWLER_AUTH=<username>:<password> vendor/bin/contao-console contao:crawl --subscribers=search-index --max-depth=3
- Define the member's username and password in the
.env.local
:# .env.local CRAWLER_AUTH=<username>:<password>
These will then get used automatically every time you executecontao:crawl
(unless overridden by the former command). Make sure you also have a.env
file, otherwise the.env.local
will not be loaded of course.
- Pass the member's username and password for every
Note: be aware that the member's password will be put unencrypted into the bash history in the former case and into
the .env.local
in the latter case.