diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-12-22 09:53:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-22 09:53:31 +0100 |
commit | adc4f1a8113f33c206a15545b4e4911f4d73234f (patch) | |
tree | 279a51651e04f4216565825597871199f32b42a6 /config | |
parent | 72fda1033379af8dc8e40c4b89b333ac73c080f0 (diff) | |
parent | 68ce17e59bf8bc09757f9b56fdad458679d6e988 (diff) | |
download | nextcloud-server-adc4f1a8113f33c206a15545b4e4911f4d73234f.tar.gz nextcloud-server-adc4f1a8113f33c206a15545b4e4911f4d73234f.zip |
Merge pull request #22916 from J0WI/unifiy-links-to-php.net
Unify links to php.net
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index fdbbbded8da..507cc489dc4 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -865,16 +865,16 @@ $CONFIG = [ ], /** - * This uses PHP.date formatting; see http://php.net/manual/en/function.date.php + * This uses PHP.date formatting; see https://www.php.net/manual/en/function.date.php * * Defaults to ISO 8601 ``2005-08-15T15:52:01+00:00`` - see \DateTime::ATOM - * (https://secure.php.net/manual/en/class.datetime.php#datetime.constants.atom) + * (https://www.php.net/manual/en/class.datetime.php#datetime.constants.atom) */ 'logdateformat' => 'F d, Y H:i:s', /** * The timezone for logfiles. You may change this; see - * http://php.net/manual/en/timezones.php + * https://www.php.net/manual/en/timezones.php * * Defaults to ``UTC`` */ @@ -1246,8 +1246,8 @@ $CONFIG = [ */ 'memcached_servers' => [ // hostname, port and optional weight. Also see: - // http://www.php.net/manual/en/memcached.addservers.php - // http://www.php.net/manual/en/memcached.addserver.php + // https://www.php.net/manual/en/memcached.addservers.php + // https://www.php.net/manual/en/memcached.addserver.php ['localhost', 11211], //array('other.host.local', 11211), ], |