From 68fb7bc94c8a1c73109bb66c60a832899edc3807 Mon Sep 17 00:00:00 2001 From: Stefan Wieczorek Date: Tue, 19 Apr 2022 07:52:51 +0200 Subject: [PATCH] . --- v2/CakePHP/CakePHP 4 | 5 +++++ v2/CodeIgniter/CodeIgniter 4 | 5 +++++ v2/Drupal/Drupal 8 | 5 +++++ v2/Drupal/Drupal 9 | 5 +++++ v2/FuelPHP/FuelPHP 1.8 | 5 +++++ v2/Generic/Generic | 5 +++++ v2/Joomla/Joomla 4 | 5 +++++ v2/Laminas/Laminas | 5 +++++ v2/Laravel/Laravel 8 | 5 +++++ v2/Laravel/Laravel 9 | 5 +++++ v2/Magento/Magento 2 | 5 +++++ v2/Matomo/Matomo 4 | 5 +++++ v2/Mautic/Mautic 4 | 5 +++++ v2/Moodle/Moodle 3 | 5 +++++ v2/Neos/Neos 8 | 5 +++++ v2/Nextcloud/Nextcloud 23 | 5 +++++ v2/Nodejs/Nodejs | 5 +++++ v2/OroCRM/OroCRM 5.0 | 5 +++++ v2/OroCommerce/OroCommerce 5.0 | 5 +++++ v2/PrestaShop/PrestaShop 1.7 | 5 +++++ v2/Python/Python | 5 +++++ v2/Shopware/Shopware 6 | 5 +++++ v2/Slim/Slim 4 | 5 +++++ v2/Static/Static | 5 +++++ v2/Symfony/Symfony 5 | 5 +++++ v2/Symfony/Symfony 6 | 5 +++++ v2/TYPO3/TYPO3 v11 | 5 +++++ v2/WooCommerce/WooCommerce | 5 +++++ v2/WordPress/WordPress | 5 +++++ v2/Yii/Yii 2 | 5 +++++ v2/ownCloud/OwnCloud 10 | 5 +++++ 31 files changed, 155 insertions(+) diff --git a/v2/CakePHP/CakePHP 4 b/v2/CakePHP/CakePHP 4 index 6dc9efc..60d64cf 100755 --- a/v2/CakePHP/CakePHP 4 +++ b/v2/CakePHP/CakePHP 4 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/CodeIgniter/CodeIgniter 4 b/v2/CodeIgniter/CodeIgniter 4 index 4c95595..96b85cd 100755 --- a/v2/CodeIgniter/CodeIgniter 4 +++ b/v2/CodeIgniter/CodeIgniter 4 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/Drupal/Drupal 8 b/v2/Drupal/Drupal 8 index 949a0e3..f2c2cca 100755 --- a/v2/Drupal/Drupal 8 +++ b/v2/Drupal/Drupal 8 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/Drupal/Drupal 9 b/v2/Drupal/Drupal 9 index 949a0e3..f2c2cca 100755 --- a/v2/Drupal/Drupal 9 +++ b/v2/Drupal/Drupal 9 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/FuelPHP/FuelPHP 1.8 b/v2/FuelPHP/FuelPHP 1.8 index e8319c1..fcc5c9e 100755 --- a/v2/FuelPHP/FuelPHP 1.8 +++ b/v2/FuelPHP/FuelPHP 1.8 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/Generic/Generic b/v2/Generic/Generic index d6ec93c..dd3324e 100644 --- a/v2/Generic/Generic +++ b/v2/Generic/Generic @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/Joomla/Joomla 4 b/v2/Joomla/Joomla 4 index a9dd43b..6bbba3a 100755 --- a/v2/Joomla/Joomla 4 +++ b/v2/Joomla/Joomla 4 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/Laminas/Laminas b/v2/Laminas/Laminas index 8a1d0f9..41a83ee 100755 --- a/v2/Laminas/Laminas +++ b/v2/Laminas/Laminas @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/Laravel/Laravel 8 b/v2/Laravel/Laravel 8 index 4d96da3..32eb630 100755 --- a/v2/Laravel/Laravel 8 +++ b/v2/Laravel/Laravel 8 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/Laravel/Laravel 9 b/v2/Laravel/Laravel 9 index 4c95595..96b85cd 100755 --- a/v2/Laravel/Laravel 9 +++ b/v2/Laravel/Laravel 9 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/Magento/Magento 2 b/v2/Magento/Magento 2 index 0487b9f..cc9394a 100755 --- a/v2/Magento/Magento 2 +++ b/v2/Magento/Magento 2 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} location ~/media/ { diff --git a/v2/Matomo/Matomo 4 b/v2/Matomo/Matomo 4 index d6ec93c..dd3324e 100755 --- a/v2/Matomo/Matomo 4 +++ b/v2/Matomo/Matomo 4 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/Mautic/Mautic 4 b/v2/Mautic/Mautic 4 index 005e856..67ae2d0 100755 --- a/v2/Mautic/Mautic 4 +++ b/v2/Mautic/Mautic 4 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} location ~ ^/(config|tmp|core|lang) { diff --git a/v2/Moodle/Moodle 3 b/v2/Moodle/Moodle 3 index 4b5949f..29fb6a2 100755 --- a/v2/Moodle/Moodle 3 +++ b/v2/Moodle/Moodle 3 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} rewrite ^/(.*.php)(/)(.*)$ /$1?file=/$3 last; diff --git a/v2/Neos/Neos 8 b/v2/Neos/Neos 8 index b362f43..d526d94 100755 --- a/v2/Neos/Neos 8 +++ b/v2/Neos/Neos 8 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/Nextcloud/Nextcloud 23 b/v2/Nextcloud/Nextcloud 23 index 924527f..bc07337 100755 --- a/v2/Nextcloud/Nextcloud 23 +++ b/v2/Nextcloud/Nextcloud 23 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} location = /.well-known/carddav { diff --git a/v2/Nodejs/Nodejs b/v2/Nodejs/Nodejs index 91a0326..8602a06 100755 --- a/v2/Nodejs/Nodejs +++ b/v2/Nodejs/Nodejs @@ -15,6 +15,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} index index.html; diff --git a/v2/OroCRM/OroCRM 5.0 b/v2/OroCRM/OroCRM 5.0 index 629d823..ef4af54 100755 --- a/v2/OroCRM/OroCRM 5.0 +++ b/v2/OroCRM/OroCRM 5.0 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/OroCommerce/OroCommerce 5.0 b/v2/OroCommerce/OroCommerce 5.0 index 629d823..ef4af54 100755 --- a/v2/OroCommerce/OroCommerce 5.0 +++ b/v2/OroCommerce/OroCommerce 5.0 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/PrestaShop/PrestaShop 1.7 b/v2/PrestaShop/PrestaShop 1.7 index d095644..4a538ca 100755 --- a/v2/PrestaShop/PrestaShop 1.7 +++ b/v2/PrestaShop/PrestaShop 1.7 @@ -16,6 +16,11 @@ server { # rewrite ^ https://$host$uri permanent; #} + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} location /admin-dev/ { diff --git a/v2/Python/Python b/v2/Python/Python index 91a0326..8602a06 100755 --- a/v2/Python/Python +++ b/v2/Python/Python @@ -15,6 +15,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} index index.html; diff --git a/v2/Shopware/Shopware 6 b/v2/Shopware/Shopware 6 index 641417c..491b89f 100755 --- a/v2/Shopware/Shopware 6 +++ b/v2/Shopware/Shopware 6 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} location /recovery/install/ { diff --git a/v2/Slim/Slim 4 b/v2/Slim/Slim 4 index 4d96da3..32eb630 100755 --- a/v2/Slim/Slim 4 +++ b/v2/Slim/Slim 4 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/Static/Static b/v2/Static/Static index 4c93be2..8a4c19f 100644 --- a/v2/Static/Static +++ b/v2/Static/Static @@ -15,6 +15,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} index index.html; diff --git a/v2/Symfony/Symfony 5 b/v2/Symfony/Symfony 5 index 4c95595..96b85cd 100755 --- a/v2/Symfony/Symfony 5 +++ b/v2/Symfony/Symfony 5 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/Symfony/Symfony 6 b/v2/Symfony/Symfony 6 index 4c95595..96b85cd 100755 --- a/v2/Symfony/Symfony 6 +++ b/v2/Symfony/Symfony 6 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/TYPO3/TYPO3 v11 b/v2/TYPO3/TYPO3 v11 index 3a50c5a..9a3c140 100755 --- a/v2/TYPO3/TYPO3 v11 +++ b/v2/TYPO3/TYPO3 v11 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} location /typo3/ { diff --git a/v2/WooCommerce/WooCommerce b/v2/WooCommerce/WooCommerce index d6ec93c..dd3324e 100755 --- a/v2/WooCommerce/WooCommerce +++ b/v2/WooCommerce/WooCommerce @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/WordPress/WordPress b/v2/WordPress/WordPress index d6ec93c..dd3324e 100644 --- a/v2/WordPress/WordPress +++ b/v2/WordPress/WordPress @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/Yii/Yii 2 b/v2/Yii/Yii 2 index 07fd410..2180693 100755 --- a/v2/Yii/Yii 2 +++ b/v2/Yii/Yii 2 @@ -16,6 +16,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} try_files $uri $uri/ /index.php?$args; diff --git a/v2/ownCloud/OwnCloud 10 b/v2/ownCloud/OwnCloud 10 index d5b333d..0e71bcd 100755 --- a/v2/ownCloud/OwnCloud 10 +++ b/v2/ownCloud/OwnCloud 10 @@ -18,6 +18,11 @@ server { rewrite ^ https://$host$uri permanent; } + location ~ /.well-known { + auth_basic off; + allow all; + } + {{settings}} location = /.well-known/carddav {