Header Name | Value |
---|---|
X-Real-IP | $remote_addr |
X-Forwarded-For | $proxy_add_x_forwarded_for |
Host | $http_host |
X-Forward-Proto | $scheme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set +x | |
# Author Josef Glatz <[email protected]> | |
# | |
# This script can be used as simple backup before upgrading a matomo instance | |
# | |
# The script takes care of encoded html entities right in the database password | |
# of the config.ini.php which looks like that is something coming from Mittwald's | |
# managed application installer script. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set +x | |
# Author Josef Glatz <[email protected]> | |
# | |
# This script can be used as simple backup before upgrading a matomo instance | |
# | |
# The script takes care of encoded html entities right in the database password | |
# of the config.ini.php which looks like that is something coming from Mittwald's | |
# managed application installer script. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pre_get_sources_script = "git config --global --add safe.directory '*'" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
environment_variables: | |
REMOTE_HOST: customerwebsite-production-dev | |
REMOTE_DB: proddev_5Re2 | |
REMOTE_EXTRA_FILE: "/var/www/html/shared/.my.cnf" | |
REMOTE_DATA_PATH: /var/www/html/shared/Data | |
REMOTE_IGNORE_TABLES: |- | |
"be_sessions | |
cache_treelist | |
fe_sessions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
solr: | |
container_name: ddev-${DDEV_SITENAME}-solr | |
image: "solr:8.11" | |
env_file: "../app/.env" | |
networks: | |
default: null | |
volumes: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Adopt one line in the TYPO3 default .htaccess right in your document_root: | |
# delete `Options -MultiViews` | |
# see also https://github.com/TYPO3/TYPO3.CMS/blob/440f748a8d75be5a2be516f5c09b99c932942f2c/typo3/sysext/install/Resources/Private/FolderStructureTemplateFiles/root-htaccess#L356 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker-compose exec --user mysql mysql sh -c "mysqldump -udev -pdev typo3 2>/dev/null" > $(date +"%Y%m%d_%H%M%S").sql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types = 1); | |
namespace JosefGlatz\Theme\ViewHelpers\Format; | |
use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface; | |
use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper; | |
use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\CompileWithContentArgumentAndRenderStatic; | |
/** | |
* Remove empty P tags from $content by using preg_replace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# at.supseven.jglatz.deleteapfssnapshots 1.0.0 | |
# | |
# Deletes all APFS Snapshots. | |
# 2020 Josef Glatz | |
# | |
echo | |
echo "Local Snapshots:" |
NewerOlder