Open ssl.conf in a text editor.
Edit the domain(s) listed under the [alt_names] section so that they match the local domain name you want to use for your project, e.g.
DNS.1 = my-project.dev
Additional FQDNs can be added if required:
| prototype(Neos.Neos:Content) { | |
| @process.contentDimensions { | |
| expression = Foo.Bar:ShowContentDimensions | |
| @position = 'end' | |
| } | |
| } | |
| prototype(Neos.Neos:ContentComponent) { | |
| @process.contentDimensions { | |
| expression = Foo.Bar:ShowContentDimensions |
| <?php | |
| declare(strict_types=1); | |
| namespace Your\Package\Security\Authentication; | |
| use Neos\Flow\Annotations as Flow; | |
| use Neos\Flow\Mvc\ActionRequest; | |
| use Neos\Flow\Security\Authentication\Token\AbstractToken; | |
| use Neos\Flow\Security\Authentication\Token\SessionlessTokenInterface; | |
| /** |
| <?php | |
| namespace Sfi\Migration\Command; | |
| /* * | |
| * This script belongs to the TYPO3 Flow package "Sfi.Migration". * | |
| * * | |
| * */ | |
| use TYPO3\Flow\Annotations as Flow; | |
| use TYPO3\Flow\Cli\CommandController; |
| <?php | |
| ... | |
| /** | |
| * @var \TYPO3\Flow\Mvc\Routing\UriBuilder | |
| */ | |
| protected $uriBuilder; | |
| /** |