aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojciech Polak <polak@gnu.org>2013-04-09 17:34:22 +0200
committerWojciech Polak <polak@gnu.org>2013-04-09 17:34:22 +0200
commit7b1aa3e3ea9c0d3c643b39fc90e5504f93f0e019 (patch)
tree3b0f2f28ad72756f09004860ff8331aee82c8552
parent317e91945d67c9e7af30e45f898f17cd67fef86c (diff)
downloadglifestream-7b1aa3e3ea9c0d3c643b39fc90e5504f93f0e019.tar.gz
glifestream-7b1aa3e3ea9c0d3c643b39fc90e5504f93f0e019.tar.bz2
Update INSTALL.
-rw-r--r--INSTALL.md38
1 files changed, 19 insertions, 19 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 1130478..3bc7fac 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -71,27 +71,28 @@ the following output:
71 Development server is running at http://127.0.0.1:8000/ 71 Development server is running at http://127.0.0.1:8000/
72 Quit the server with CONTROL-C. 72 Quit the server with CONTROL-C.
73 73
74
74Production server with mod_wsgi 75Production server with mod_wsgi
75------------------------------- 76-------------------------------
76 77
77Apache configuration: 78Apache configuration:
78 79
79` 80```
80 LoadModule wsgi_module modules/mod_wsgi.so 81LoadModule wsgi_module modules/mod_wsgi.so
81 WSGIScriptAlias / /usr/local/django/glifestream/wsgi.py 82WSGIScriptAlias / /usr/local/django/glifestream/wsgi.py
82 Alias /static "/usr/local/django/glifestream/static" 83Alias /static "/usr/local/django/glifestream/static"
83 Alias /admin_static "/usr/local/django/contrib/admin/media" 84Alias /admin_static "/usr/local/django/contrib/admin/media"
84 85
85 <Directory "/usr/local/django/glifestream/"> 86<Directory "/usr/local/django/glifestream/">
86 <IfModule mod_deflate.c> 87 <IfModule mod_deflate.c>
87 AddOutputFilterByType DEFLATE application/javascript text/css text/html 88 AddOutputFilterByType DEFLATE application/javascript text/css text/html
88 </IfModule> 89 </IfModule>
89 AllowOverride All 90 AllowOverride All
90 Options None 91 Options None
91 Order allow,deny 92 Order allow,deny
92 Allow from all 93 Allow from all
93 </Directory> 94</Directory>
94` 95```
95 96
96More detailed information is available at: 97More detailed information is available at:
97http://code.google.com/p/modwsgi/wiki/IntegrationWithDjango 98http://code.google.com/p/modwsgi/wiki/IntegrationWithDjango
@@ -107,7 +108,7 @@ To use the search functionality in GLS via Sphinx, you must add the
107following configuration to your `etc/sphinx.conf` (replace the 108following configuration to your `etc/sphinx.conf` (replace the
108`DATABASE_*` values with the proper ones from your `settings.py`): 109`DATABASE_*` values with the proper ones from your `settings.py`):
109 110
110`... 111```
111source glifestream 112source glifestream
112{ 113{
113 type = mysql 114 type = mysql
@@ -138,8 +139,7 @@ index glifestream
138 charset_type = utf-8 139 charset_type = utf-8
139 html_strip = 1 140 html_strip = 1
140} 141}
141...` 142```
142
143 143
144Receive postings via e-mail 144Receive postings via e-mail
145=========================== 145===========================

Return to:

Send suggestions and report system problems to the System administrator.