partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit ea5eaf8d4d567e589906c32f5cd1fd38d4ccbee3
parent 7fa631989eda3912d481aa1ab90ef148b9e74c91
Author: Felicitus <felicitus@felicitus.org>
Date:   Mon, 14 Dec 2015 22:09:19 +0100

Default the tips URI to https

Diffstat:
Msrc/PartKeepr/CoreBundle/DependencyInjection/Configuration.php | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/PartKeepr/CoreBundle/DependencyInjection/Configuration.php b/src/PartKeepr/CoreBundle/DependencyInjection/Configuration.php @@ -23,7 +23,7 @@ class Configuration implements ConfigurationInterface ->end() ->scalarNode('tip_of_the_day_uri') ->cannotBeEmpty() - ->defaultValue('http://partkeepr.org/tips/%s') + ->defaultValue('https://partkeepr.org/tips/%s') ->info('The URI where tips are loaded from') ->end() ->arrayNode('required_cronjobs') @@ -33,7 +33,7 @@ class Configuration implements ConfigurationInterface ->end() ->scalarNode('tip_of_the_day_list') ->cannotBeEmpty() - ->defaultValue('http://partkeepr.org/tips.json') + ->defaultValue('https://partkeepr.org/tips.json') ->info('The URI from where the tip database is loaded') ->end() ->scalarNode('image_cache_directory')