Show More
@@ -18,8 +18,8 b' Prerequisites' | |||
|
18 | 18 | .. tip:: |
|
19 | 19 | |
|
20 | 20 | We recommend using Wandisco repositories which provide latest SVN versions |
|
21 | for most platforms. Below is example how to add the wandisco repositories | |
|
22 | for Ubuntu. | |
|
21 | for most platforms. | |
|
22 | Here is an example how to add the Wandisco repositories for Ubuntu. | |
|
23 | 23 | |
|
24 | 24 | .. code-block:: bash |
|
25 | 25 | |
@@ -27,15 +27,28 b' Prerequisites' | |||
|
27 | 27 | $ sudo wget -q http://opensource.wandisco.com/wandisco-debian.gpg -O- | sudo apt-key add - |
|
28 | 28 | $ sudo apt-get update |
|
29 | 29 | |
|
30 | Here is an example how to add the Wandisco repositories for Centos/Redhat. Using | |
|
31 | a yum config | |
|
30 | 32 | |
|
31 | Using Ubuntu 14.04/16.04 Distribution as an example execute the following to | |
|
32 | install required components: | |
|
33 | .. code-block:: bash | |
|
34 | ||
|
35 | [wandisco-Git] | |
|
36 | name=CentOS-6 - Wandisco Git | |
|
37 | baseurl=http://opensource.wandisco.com/centos/6/git/$basearch/ | |
|
38 | enabled=1 | |
|
39 | gpgcheck=1 | |
|
40 | gpgkey=http://opensource.wandisco.com/RPM-GPG-KEY-WANdisco | |
|
41 | ||
|
42 | ||
|
43 | ||
|
44 | Example installation of required components for Ubuntu platform: | |
|
33 | 45 | |
|
34 | 46 | .. code-block:: bash |
|
35 | 47 | |
|
36 |
$ sudo apt-get install apache2 |
|
|
48 | $ sudo apt-get install apache2 | |
|
49 | $ sudo apt-get install libapache2-mod-svn | |
|
37 | 50 | |
|
38 | Once installed you need to enable ``dav_svn``: | |
|
51 | Once installed you need to enable ``dav_svn`` on Ubuntu: | |
|
39 | 52 | |
|
40 | 53 | .. code-block:: bash |
|
41 | 54 | |
@@ -44,6 +57,26 b' Once installed you need to enable ``dav_' | |||
|
44 | 57 | $ sudo a2enmod authn_anon |
|
45 | 58 | |
|
46 | 59 | |
|
60 | Example installation of required components for RedHat/CentOS platform: | |
|
61 | ||
|
62 | .. code-block:: bash | |
|
63 | ||
|
64 | $ sudo yum install httpd | |
|
65 | $ sudo yum install subversion mod_dav_svn | |
|
66 | ||
|
67 | ||
|
68 | Once installed you need to enable ``dav_svn`` on RedHat/CentOS: | |
|
69 | ||
|
70 | .. code-block:: bash | |
|
71 | ||
|
72 | sudo vi /etc/httpd/conf.modules.d/10-subversion.conf | |
|
73 | ## The file should read: | |
|
74 | ||
|
75 | LoadModule dav_svn_module modules/mod_dav_svn.so | |
|
76 | LoadModule headers_module modules/mod_headers.so | |
|
77 | LoadModule authn_anon_module modules/mod_authn_anon.so | |
|
78 | ||
|
79 | ||
|
47 | 80 | Configuring Apache Setup |
|
48 | 81 | ======================== |
|
49 | 82 |
General Comments 0
You need to be logged in to leave comments.
Login now