From c771d1a181cb464525a4ccaa7215be99105a581f Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 15 Aug 2018 09:47:43 +0100 Subject: [PATCH] Remove links to missing images --- .../install-and-configure-subversion-svn-server-ubuntu.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/source/_posts/install-and-configure-subversion-svn-server-ubuntu.md b/source/_posts/install-and-configure-subversion-svn-server-ubuntu.md index ef0c3814..2138540f 100644 --- a/source/_posts/install-and-configure-subversion-svn-server-ubuntu.md +++ b/source/_posts/install-and-configure-subversion-svn-server-ubuntu.md @@ -101,8 +101,6 @@ sudo service apache2 restart I can now browse through my test repository by opening Firefox, and navigating to `http://127.0.0.1/svn/test`. Here, I can now see my three directories, although they are currently all empty. -Image: Screenshot of the test SVN repository in Firefox - ## Securing my SVN repositories Before I start committing any files to the test repository, I want to ensure that only authorised users can view it - currently anyone can view the repository and it's contents, as well as being able to checkout and commit files. To do this, I'm going to require the user to enter a username and a password before viewing or performing any actions with the repository. @@ -128,8 +126,6 @@ $ htpasswd -cm /etc/svn-auth oliver I'm prompted to enter and confirm my password, and then my details are saved. The Apache service will need to be restarted again, and then the user will need to authenticate themselves before viewing the repositories. -Image: Screenshot of the authorisation prompt when opening the repository - ## Checking out the repository and commiting files For example, now want to checkout the files within my repository into a new directory called 'test2' within my home directory. Firstly, I need to create the new directory, and then I can issue the checkout command.