瀏覽代碼

Deprecate Kune for now

Bob Mottram 11 年之前
父節點
當前提交
6e1aad3996
共有 1 個文件被更改,包括 86 次插入86 次删除
  1. 86
    86
      beaglebone.txt

+ 86
- 86
beaglebone.txt 查看文件

@@ -2145,92 +2145,6 @@ If you are using a self-signed certificate then at the login screen scroll down
2145 2145
 More information about the Friendica app can be found on http://friendica-for-android.wiki-lab.net/
2146 2146
 ***** Mobile Theme
2147 2147
 Another way to access Friendica from a mobile device is to just use the web browser.  If you have selected a mobile theme within your settings then when viewing from an Android system the mobile theme will be displayed.
2148
-*** Kune
2149
-Kune is a collaboration tool aimed at not just socialising but also getting stuff done within a community.  It's based upon Apache Wave (formerly Google Wave).
2150
-
2151
-#+BEGIN_SRC: bash
2152
-apt-get install openjdk-6-jdk openjdk-7-jre mysql-server adduser dbconfig-common libjmagick6-jni
2153
-#+END_SRC
2154
-
2155
-Add the Kune repository:
2156
-
2157
-#+BEGIN_SRC: bash
2158
-emacs /etc/apt/sources.list
2159
-#+END_SRC
2160
-
2161
-Append the following:
2162
-
2163
-#+BEGIN_SRC: bash
2164
-deb ftp://ftp.kune.ourproject.org/pub/kune/debian/ stable/
2165
-#+END_SRC
2166
-
2167
-Save and exit, then install the Kune package.
2168
-
2169
-#+BEGIN_SRC: bash
2170
-gpg --keyserver pgp.mit.edu --recv-keys 9E358A05
2171
-gpg --armor --export 9E358A05 | apt-key add -
2172
-apt-get update
2173
-apt-get install kune
2174
-#+END_SRC
2175
-
2176
-You will be asked for the MySql root password and another password to be used with the Kune database.
2177
-
2178
-Allow the system to start automatically at boot.
2179
-
2180
-#+BEGIN_SRC: bash
2181
-emacs /etc/default/kune
2182
-#+END_SRC
2183
-
2184
-Set /START=yes/, then save and exit.
2185
-
2186
-#+BEGIN_SRC: bash
2187
-service kune start
2188
-#+END_SRC
2189
-
2190
-Now configure Apache.
2191
-
2192
-#+BEGIN_SRC: bash
2193
-a2enmod expires
2194
-a2enmod proxy
2195
-a2enmod proxy_connect
2196
-a2enmod proxy_http
2197
-#+END_SRC
2198
-
2199
-mysql -p kune_prod < /usr/share/dbconfig-common/data/kune/upgrade/mysql/0.2.0+b25
2200
-
2201
-emacs /etc/apache2/sites-available/$HOSTNAME
2202
-
2203
-<VirtualHost *:80>
2204
-    ServerName YOURSERVERNAME
2205
-
2206
-    ProxyRequests Off
2207
-    <Proxy *>
2208
-        Order deny,allow
2209
-        Allow from all
2210
-    </Proxy>
2211
-
2212
-    <Files *.cache.*>
2213
-        ExpiresActive On
2214
-        ExpiresDefault "modification plus 2 years"
2215
-    </Files>
2216
-
2217
-    <Files *.nocache.*>
2218
-        ExpiresActive Off
2219
-    </Files>
2220
-
2221
-    ProxyPass /kune/ http://localhost:8888/
2222
-    ProxyPassReverse /kune/ http://localhost:8888/
2223
-    <Location /var/www/mydomainname.com/htdocs/kune/>
2224
-        Order allow,deny
2225
-        Allow from all
2226
-    </Location>
2227
-</VirtualHost>
2228
-
2229
-
2230
-Within a browser open https://mydomainname.com:8888
2231
-
2232
-See documentation in /usr/share/doc/kune/INSTALL.gz
2233
-
2234 2148
 *** Movim
2235 2149
 
2236 2150
 #+BEGIN_VERSE
@@ -3877,6 +3791,92 @@ cd /var/www/$HOSTNAME/htdocs/mediagoblin
3877 3791
 
3878 3792
 https://github.com/joar/mediagoblin-init-scripts
3879 3793
 
3794
+** Kune
3795
+Kune is a collaboration tool aimed at not just socialising but also getting stuff done within a community.  It's based upon Apache Wave (formerly Google Wave).
3796
+
3797
+#+BEGIN_SRC: bash
3798
+apt-get install openjdk-6-jdk openjdk-7-jre mysql-server adduser dbconfig-common libjmagick6-jni
3799
+#+END_SRC
3800
+
3801
+Add the Kune repository:
3802
+
3803
+#+BEGIN_SRC: bash
3804
+emacs /etc/apt/sources.list
3805
+#+END_SRC
3806
+
3807
+Append the following:
3808
+
3809
+#+BEGIN_SRC: bash
3810
+deb ftp://ftp.kune.ourproject.org/pub/kune/debian/ stable/
3811
+#+END_SRC
3812
+
3813
+Save and exit, then install the Kune package.
3814
+
3815
+#+BEGIN_SRC: bash
3816
+gpg --keyserver pgp.mit.edu --recv-keys 9E358A05
3817
+gpg --armor --export 9E358A05 | apt-key add -
3818
+apt-get update
3819
+apt-get install kune
3820
+#+END_SRC
3821
+
3822
+You will be asked for the MySql root password and another password to be used with the Kune database.
3823
+
3824
+Allow the system to start automatically at boot.
3825
+
3826
+#+BEGIN_SRC: bash
3827
+emacs /etc/default/kune
3828
+#+END_SRC
3829
+
3830
+Set /START=yes/, then save and exit.
3831
+
3832
+#+BEGIN_SRC: bash
3833
+service kune start
3834
+#+END_SRC
3835
+
3836
+Now configure Apache.
3837
+
3838
+#+BEGIN_SRC: bash
3839
+a2enmod expires
3840
+a2enmod proxy
3841
+a2enmod proxy_connect
3842
+a2enmod proxy_http
3843
+#+END_SRC
3844
+
3845
+mysql -p kune_prod < /usr/share/dbconfig-common/data/kune/upgrade/mysql/0.2.0+b25
3846
+
3847
+emacs /etc/apache2/sites-available/$HOSTNAME
3848
+
3849
+<VirtualHost *:80>
3850
+    ServerName YOURSERVERNAME
3851
+
3852
+    ProxyRequests Off
3853
+    <Proxy *>
3854
+        Order deny,allow
3855
+        Allow from all
3856
+    </Proxy>
3857
+
3858
+    <Files *.cache.*>
3859
+        ExpiresActive On
3860
+        ExpiresDefault "modification plus 2 years"
3861
+    </Files>
3862
+
3863
+    <Files *.nocache.*>
3864
+        ExpiresActive Off
3865
+    </Files>
3866
+
3867
+    ProxyPass /kune/ http://localhost:8888/
3868
+    ProxyPassReverse /kune/ http://localhost:8888/
3869
+    <Location /var/www/mydomainname.com/htdocs/kune/>
3870
+        Order allow,deny
3871
+        Allow from all
3872
+    </Location>
3873
+</VirtualHost>
3874
+
3875
+
3876
+Within a browser open https://mydomainname.com:8888
3877
+
3878
+See documentation in /usr/share/doc/kune/INSTALL.gz
3879
+
3880 3880
 * Related projects
3881 3881
 
3882 3882
   * [[https://freedomboxfoundation.org/][Freedombox]]