9 | = \Lang::get('offline.speedy::lang.sharding.info_text'); ?> 10 |
11 |├── .gitignore
├── views
├── domain_sharding.htm
├── gzip.htm
└── caching.htm
├── models
├── settings
│ ├── _sharding_warning.htm
│ └── fields.yaml
└── Settings.php
├── composer.json
├── classes
├── htaccess
│ ├── HtaccessManager.php
│ └── HtaccessWriter.php
└── middleware
│ ├── CDNMiddleware.php
│ └── Http2Middleware.php
├── console
├── StatusCommand.php
├── ToggleGzipCommand.php
├── ToggleCachingCommand.php
└── ToggleHttp2Command.php
├── LICENSE
├── updates
└── version.yaml
├── README.md
├── Plugin.php
└── lang
├── en
└── lang.php
├── pt-pt
└── lang.php
├── ru
└── lang.php
├── de
└── lang.php
└── fr
└── lang.php
/.gitignore:
--------------------------------------------------------------------------------
1 | vendor
2 |
--------------------------------------------------------------------------------
/views/domain_sharding.htm:
--------------------------------------------------------------------------------
1 |
= \Lang::get('offline.speedy::lang.sharding.info_subheading'); ?>
6 |9 | = \Lang::get('offline.speedy::lang.sharding.info_text'); ?> 10 |
11 |