1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-31 20:26:40 +00:00

Use HTTPS everywhere. Especially when the website already redirects to HTTPS.

This commit is contained in:
Robin Schneider 2016-01-17 22:31:08 +01:00
parent 89ce86a33b
commit 576348a9d4
No known key found for this signature in database
GPG key ID: 489A4D5EC353C98A
5 changed files with 9 additions and 9 deletions

View file

@ -165,7 +165,7 @@ for the complete license.
.. |doc| image:: https://readthedocs.org/projects/borgbackup/badge/?version=stable .. |doc| image:: https://readthedocs.org/projects/borgbackup/badge/?version=stable
:alt: Documentation :alt: Documentation
:target: http://borgbackup.readthedocs.org/en/stable/ :target: https://borgbackup.readthedocs.org/en/stable/
.. |build| image:: https://travis-ci.org/borgbackup/borg.svg .. |build| image:: https://travis-ci.org/borgbackup/borg.svg
:alt: Build Status :alt: Build Status

View file

@ -769,7 +769,7 @@ def test_file_status(self):
output = self.cmd('create', '-v', '--list', self.repository_location + '::test1', 'input') output = self.cmd('create', '-v', '--list', self.repository_location + '::test1', 'input')
self.assert_in("U input/file1", output) self.assert_in("U input/file1", output)
# this is expected, although surprising, for why, see: # this is expected, although surprising, for why, see:
# http://borgbackup.readthedocs.org/en/latest/faq.html#i-am-seeing-a-added-status-for-a-unchanged-file # https://borgbackup.readthedocs.org/en/latest/faq.html#i-am-seeing-a-added-status-for-a-unchanged-file
self.assert_in("A input/file2", output) self.assert_in("A input/file2", output)
def test_create_topical(self): def test_create_topical(self):

View file

@ -161,4 +161,4 @@ See also
-------- --------
* `SSH Daemon manpage <http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man8/sshd.8>`_ * `SSH Daemon manpage <http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man8/sshd.8>`_
* `Ansible <http://docs.ansible.com>`_ * `Ansible <https://docs.ansible.com>`_

View file

@ -89,7 +89,7 @@ key file based encryption with a blank passphrase. See
``export`` in a shell script file should be safe, however, as ``export`` in a shell script file should be safe, however, as
the environment of a process is `accessible only to that the environment of a process is `accessible only to that
user user
<http://security.stackexchange.com/questions/14000/environment-variable-accessibility-in-linux/14009#14009>`_. <https://security.stackexchange.com/questions/14000/environment-variable-accessibility-in-linux/14009#14009>`_.
When backing up to remote encrypted repos, is encryption done locally? When backing up to remote encrypted repos, is encryption done locally?
---------------------------------------------------------------------- ----------------------------------------------------------------------

View file

@ -8,17 +8,17 @@
.. _issue tracker: https://github.com/borgbackup/borg/issues .. _issue tracker: https://github.com/borgbackup/borg/issues
.. _deduplication: https://en.wikipedia.org/wiki/Data_deduplication .. _deduplication: https://en.wikipedia.org/wiki/Data_deduplication
.. _AES: https://en.wikipedia.org/wiki/Advanced_Encryption_Standard .. _AES: https://en.wikipedia.org/wiki/Advanced_Encryption_Standard
.. _HMAC-SHA256: http://en.wikipedia.org/wiki/HMAC .. _HMAC-SHA256: https://en.wikipedia.org/wiki/HMAC
.. _SHA256: https://en.wikipedia.org/wiki/SHA-256 .. _SHA256: https://en.wikipedia.org/wiki/SHA-256
.. _PBKDF2: https://en.wikipedia.org/wiki/PBKDF2 .. _PBKDF2: https://en.wikipedia.org/wiki/PBKDF2
.. _ACL: https://en.wikipedia.org/wiki/Access_control_list .. _ACL: https://en.wikipedia.org/wiki/Access_control_list
.. _libacl: http://savannah.nongnu.org/projects/acl/ .. _libacl: https://savannah.nongnu.org/projects/acl/
.. _libattr: http://savannah.nongnu.org/projects/attr/ .. _libattr: https://savannah.nongnu.org/projects/attr/
.. _liblz4: https://github.com/Cyan4973/lz4 .. _liblz4: https://github.com/Cyan4973/lz4
.. _OpenSSL: https://www.openssl.org/ .. _OpenSSL: https://www.openssl.org/
.. _`Python 3`: http://www.python.org/ .. _`Python 3`: https://www.python.org/
.. _Buzhash: https://en.wikipedia.org/wiki/Buzhash .. _Buzhash: https://en.wikipedia.org/wiki/Buzhash
.. _msgpack: http://msgpack.org/ .. _msgpack: https://msgpack.org/
.. _`msgpack-python`: https://pypi.python.org/pypi/msgpack-python/ .. _`msgpack-python`: https://pypi.python.org/pypi/msgpack-python/
.. _llfuse: https://pypi.python.org/pypi/llfuse/ .. _llfuse: https://pypi.python.org/pypi/llfuse/
.. _homebrew: http://brew.sh/ .. _homebrew: http://brew.sh/