mirror of
https://github.com/shlinkio/shlink.git
synced 2025-03-14 04:00:57 +03:00
Merge pull request #670 from acelaya-forks/feature/base-url-redirect
Feature/base url redirect
This commit is contained in:
commit
f6a83a3062
2 changed files with 5 additions and 1 deletions
|
@ -26,7 +26,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com), and this
|
|||
|
||||
#### Fixed
|
||||
|
||||
* *Nothing*
|
||||
* [#665](https://github.com/shlinkio/shlink/issues/665) Fixed `base_url_redirect_to` simplified config option not being properly parsed.
|
||||
|
||||
|
||||
## 2.0.5 - 2020-02-09
|
||||
|
|
|
@ -41,6 +41,8 @@ class SimplifiedConfigParserTest extends TestCase
|
|||
'validate_url' => true,
|
||||
'delete_short_url_threshold' => 50,
|
||||
'invalid_short_url_redirect_to' => 'foobar.com',
|
||||
'regular_404_redirect_to' => 'bar.com',
|
||||
'base_url_redirect_to' => 'foo.com',
|
||||
'redis_servers' => [
|
||||
'tcp://1.1.1.1:1111',
|
||||
'tcp://1.2.2.2:2222',
|
||||
|
@ -114,6 +116,8 @@ class SimplifiedConfigParserTest extends TestCase
|
|||
|
||||
'not_found_redirects' => [
|
||||
'invalid_short_url' => 'foobar.com',
|
||||
'regular_404' => 'bar.com',
|
||||
'base_url' => 'foo.com',
|
||||
],
|
||||
|
||||
'mezzio-swoole' => [
|
||||
|
|
Loading…
Add table
Reference in a new issue