stern-domain-at.pfx (optionally secured with passphrase)
Openssl needs to be installed
| <?php | |
| // ... | |
| /** | |
| * Set custom symlinks (in addition to fileadmin and uploads) | |
| */ | |
| $application->setSymlinks([ | |
| 'web/typo3conf/l10n' => '../../../../shared/Data/l10n' | |
| ]); |
(This list is updated regulary/if something is tested/fixed by me)
https://forge.typo3.org/issues/87089 https://forge.typo3.org/issues/59383 If you create a new page within the pagetree, it's always disabled per default. it would be a real benefit if such settings get's respected
| # Connect to you NAS with YOUR admin account | |
| ssh [email protected] | |
| # go sudo | |
| sudo -i | |
| # switch to user postgres | |
| su - postgres |
| # Redirects an exact index.php?id=1 to / | |
| RewriteCond %{QUERY_STRING} ^id=1$ | |
| RewriteRule ^index.php(.*) /$1? [R=301,L] |
| checkDeprecations: | |
| stage: test | |
| image: edbizarro/gitlab-ci-pipeline-php:7.2 | |
| before_script: | |
| - 'which wget || ( sudo apt-get update -y && sudo apt-get install wget -y )' | |
| - cd $CI_PROJECT_DIR/ | |
| - mkdir -p Build/Report/Deprecations | |
| - cd $CI_PROJECT_DIR/app | |
| - curl -s https://api.github.com/repos/Tuurlijk/typo3scan/releases/latest | grep "browser_download_url.*phar" | cut '-d' ':' '-f' '2,3' | tr '-d' '\"' | wget -qi - | |
| - chmod +x typo3scan.phar |
| # ... | |
| CustomLog "|/usr/local/bin/anonip --output /var/log/apache2/www.website.com-access.log" proxy | |
| # ... |
| <?php | |
| declare(strict_types=1); | |
| // Override configuration of LocalConfiguration | |
| $customChanges = [ | |
| 'MAIL' => [ | |
| 'defaultMailFromAddress' => '[email protected]', | |
| 'defaultMailFromName' => 'My Name', | |
| 'transport' => 'smtp', | |
| 'transport_smtp_encrypt' => 'tls', |
| errorHandling: | |
| - | |
| errorCode: '404' | |
| errorContentSource: 't3://page?uid=316' | |
| errorHandler: PHP | |
| errorPhpClassFQCN: B13\AnyProject\PageErrorHandler\LocalPageErrorHandler |