Merge remote-tracking branch 'refs/remotes/rodney757-github/mail'
[mediagoblin.git] / docs / source / siteadmin / deploying.rst
CommitLineData
473a4431
CAW
1.. MediaGoblin Documentation
2
3 Written in 2011, 2012 by MediaGoblin contributors
4
5 To the extent possible under law, the author(s) have dedicated all
6 copyright and related and neighboring rights to this software to
7 the public domain worldwide. This software is distributed without
8 any warranty.
9
10 You should have received a copy of the CC0 Public Domain
11 Dedication along with this software. If not, see
12 <http://creativecommons.org/publicdomain/zero/1.0/>.
13
abe74178
WKG
14.. _deploying-chapter:
15
4e893b6e 16=====================
17Deploying MediaGoblin
18=====================
00fdc7bd 19
e260065a
CAW
20GNU MediaGoblin is fairly new and so at the time of writing, there
21aren't easy package-manager-friendly methods to install MediaGoblin.
22However, doing a basic install isn't too complex in and of itself.
56d507b6 23
e260065a
CAW
24There's an almost infinite way to deploy things... for now, we'll keep
25it simple with some assumptions and use a setup that combines
26mediagoblin + virtualenv + fastcgi + nginx on a .deb or .rpm based
27GNU/Linux distro.
28
076bf0cf
WKG
29.. note::
30
31 These tools are for site administrators wanting to deploy a fresh
32 install. If instead you want to join in as a contributor, see our
33 `Hacking HOWTO <http://wiki.mediagoblin.org/HackingHowto>`_ instead.
e260065a 34
4d8a3cd8
CAW
35 There are also many ways to install servers... for the sake of
36 simplicity, our instructions below describe installing with nginx.
37 For more recipes, including Apache, see
38 `our wiki <http://wiki.mediagoblin.org/Deployment>`_.
39
4e893b6e 40Prepare System
41--------------
e260065a 42
4e893b6e 43Dependencies
44~~~~~~~~~~~~
e260065a 45
4e893b6e 46MediaGoblin has the following core dependencies:
e260065a 47
4e893b6e 48- Python 2.6 or 2.7
49- `python-lxml <http://lxml.de/>`_
50- `git <http://git-scm.com/>`_
775ec9e8 51- `SQLite <http://www.sqlite.org/>`_/`PostgreSQL <http://www.postgresql.org/>`_
4e893b6e 52- `Python Imaging Library <http://www.pythonware.com/products/pil/>`_ (PIL)
53- `virtualenv <http://www.virtualenv.org/>`_
e260065a 54
4e893b6e 55On a DEB-based system (e.g Debian, gNewSense, Trisquel, Ubuntu, and
7798f911 56derivatives) issue the following command::
e260065a 57
775ec9e8 58 sudo apt-get install git-core python python-dev python-lxml \
076bf0cf 59 python-imaging python-virtualenv
e260065a 60
4e893b6e 61On a RPM-based system (e.g. Fedora, RedHat, and derivatives) issue the
7798f911 62following command::
4e893b6e 63
775ec9e8 64 yum install python-paste-deploy python-paste-script \
076bf0cf
WKG
65 git-core python python-devel python-lxml python-imaging \
66 python-virtualenv
e260065a 67
775ec9e8
JW
68Configure PostgreSQL
69~~~~~~~~~~~~~~~~~~~~
70
71.. note::
72
7798f911
WKG
73 MediaGoblin currently supports PostgreSQL and SQLite. The default is a
74 local SQLite database. This will "just work" for small deployments.
775ec9e8 75
7798f911
WKG
76 For medium to large deployments we recommend PostgreSQL.
77
78 If you don't want/need postgres, skip this section.
79
80These are the packages needed for Debian Wheezy (testing)::
775ec9e8 81
21a84362 82 sudo apt-get install postgresql postgresql-client python-psycopg2
775ec9e8
JW
83
84The installation process will create a new *system* user named ``postgres``,
85it will have privilegies sufficient to manage the database. We will create a
86new database user with restricted privilegies and a new database owned by our
87restricted database user for our MediaGoblin instance.
88
89In this example, the database user will be ``mediagoblin`` and the database
90name will be ``mediagoblin`` too.
91
7798f911 92To create our new user, run::
775ec9e8
JW
93
94 sudo -u postgres createuser mediagoblin
95
7798f911 96then answer NO to *all* the questions::
775ec9e8
JW
97
98 Shall the new role be a superuser? (y/n) n
99 Shall the new role be allowed to create databases? (y/n) n
100 Shall the new role be allowed to create more new roles? (y/n) n
101
7798f911 102then create the database all our MediaGoblin data should be stored in::
775ec9e8
JW
103
104 sudo -u postgres createdb -E UNICODE -O mediagoblin mediagoblin
105
106where the first ``mediagoblin`` is the database owner and the second
107``mediagoblin`` is the database name.
108
109.. caution:: Where is the password?
110
111 These steps enable you to authenticate to the database in a password-less
112 manner via local UNIX authentication provided you run the MediaGoblin
113 application as a user with the same name as the user you created in
114 PostgreSQL.
115
116 More on this in :ref:`Drop Privileges for MediaGoblin <drop-privileges-for-mediagoblin>`.
117
118
775ec9e8
JW
119.. _drop-privileges-for-mediagoblin:
120
4e893b6e 121Drop Privileges for MediaGoblin
122~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17c71230 123
4e893b6e 124As MediaGoblin does not require special permissions or elevated
125access, you should run MediaGoblin under an existing non-root user or
126preferably create a dedicated user for the purpose of running
127MediaGoblin. Consult your distribution's documentation on how to
128create "system account" or dedicated service user. Ensure that it is
129not possible to log in to your system with as this user.
17c71230 130
4e893b6e 131You should create a working directory for MediaGoblin. This document
076bf0cf
WKG
132assumes your local git repository will be located at
133``/srv/mediagoblin.example.org/mediagoblin/`` for this documentation.
134Substitute your prefer ed local deployment path as needed.
17c71230 135
4e893b6e 136This document assumes that all operations are performed as this
7798f911 137user. To drop privileges to this user, run the following command::
17c71230 138
076bf0cf 139 su - [mediagoblin]
17c71230 140
076bf0cf 141Where, "``[mediagoblin]``" is the username of the system user that will
4e893b6e 142run MediaGoblin.
143
e260065a 144Install MediaGoblin and Virtualenv
4e893b6e 145----------------------------------
e260065a 146
076bf0cf
WKG
147.. note::
148
7798f911 149 MediaGoblin is still developing rapidly. As a result
076bf0cf
WKG
150 the following instructions recommend installing from the ``master``
151 branch of the git repository. Eventually production deployments will
152 want to transition to running from more consistent releases.
e260065a 153
4e893b6e 154Issue the following commands, to create and change the working
076bf0cf 155directory. Modify these commands to reflect your own environment::
17c71230 156
076bf0cf
WKG
157 mkdir -p /srv/mediagoblin.example.org/
158 cd /srv/mediagoblin.example.org/
17c71230 159
076bf0cf 160Clone the MediaGoblin repository::
e260065a 161
076bf0cf 162 git clone git://gitorious.org/mediagoblin/mediagoblin.git
e260065a 163
7798f911 164And set up the in-package virtualenv::
e260065a 165
076bf0cf 166 cd mediagoblin
95ff15d6 167 (virtualenv --system-site-packages . || virtualenv .) && ./bin/python setup.py develop
e260065a 168
4e893b6e 169.. note::
e260065a 170
4e893b6e 171 If you have problems here, consider trying to install virtualenv
172 with the ``--distribute`` or ``--no-site-packages`` options. If
c356dc16 173 your system's default Python is in the 3.x series you may need to
4e893b6e 174 run ``virtualenv`` with the ``--python=python2.7`` or
175 ``--python=python2.6`` options.
e260065a 176
4e893b6e 177The above provides an in-package install of ``virtualenv``. While this
178is counter to the conventional ``virtualenv`` configuration, it is
179more reliable and considerably easier to configure and illustrate. If
180you're familiar with Python packaging you may consider deploying with
c356dc16 181your preferred method.
e260065a 182
076bf0cf
WKG
183Assuming you are going to deploy with FastCGI, you should also install
184flup::
99192f24 185
076bf0cf 186 ./bin/easy_install flup
99192f24 187
71ef2007
CAW
188(Sometimes this breaks because flup's site is flakey. If it does for
189you, try)::
190
191 ./bin/easy_install https://pypi.python.org/pypi/flup/1.0.3.dev-20110405
192
4e893b6e 193This concludes the initial configuration of the development
8d9aa03f 194environment. In the future, when you update your
076bf0cf 195codebase, you should also run::
e260065a 196
084a6190 197 ./bin/python setup.py develop --upgrade && ./bin/gmg dbupdate
e260065a 198
9d5cd0b9
CAW
199Note: If you are running an active site, depending on your server
200configuration, you may need to stop it first or the dbupdate command
201may hang (and it's certainly a good idea to restart it after the
202update)
203
204
4e893b6e 205Deploy MediaGoblin Services
206---------------------------
e260065a 207
a7d2a892
ST
208Edit site configuration
209~~~~~~~~~~~~~~~~~~~~~~~
210
041d2fd7
CAW
211A few basic properties must be set before MediaGoblin will work. First
212make a copy of ``mediagoblin.ini`` for editing so the original config
213file isn't lost::
a7d2a892
ST
214
215 cp mediagoblin.ini mediagoblin_local.ini
a7d2a892 216
041d2fd7
CAW
217Then:
218 - Set ``email_sender_address`` to the address you wish to be used as
219 the sender for system-generated emails
220 - Edit ``direct_remote_path``, ``base_dir``, and ``base_url`` if
221 your mediagoblin directory is not the root directory of your
222 vhost.
a7d2a892
ST
223
224
775ec9e8
JW
225Configure MediaGoblin to use the PostgreSQL database
226~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
227
7798f911
WKG
228If you are using postgres, edit the ``[mediagoblin]`` section in your
229``mediagoblin_local.ini`` and put in::
775ec9e8
JW
230
231 sql_engine = postgresql:///mediagoblin
232
233if you are running the MediaGoblin application as the same 'user' as the
234database owner.
235
7798f911 236
775ec9e8
JW
237Update database data structures
238~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
239
7798f911 240Before you start using the database, you need to run::
775ec9e8
JW
241
242 ./bin/gmg dbupdate
243
244to populate the database with the MediaGoblin data structures.
245
246
4e893b6e 247Test the Server
248~~~~~~~~~~~~~~~
e260065a 249
4e893b6e 250At this point MediaGoblin should be properly installed. You can
076bf0cf 251test the deployment with the following command::
e260065a 252
076bf0cf 253 ./lazyserver.sh --server-name=broadcast
e260065a 254
4e893b6e 255You should be able to connect to the machine on port 6543 in your
256browser to confirm that the service is operable.
e260065a 257
cd1abb11
CAW
258.. _webserver-config:
259
56d507b6 260
a7d2a892
ST
261FastCGI and nginx
262~~~~~~~~~~~~~~~~~
263
264This configuration example will use nginx, however, you may
4e893b6e 265use any webserver of your choice as long as it supports the FastCGI
266protocol. If you do not already have a web server, consider nginx, as
267the configuration files may be more clear than the
268alternatives.
269
270Create a configuration file at
271``/srv/mediagoblin.example.org/nginx.conf`` and create a symbolic link
272into a directory that will be included in your ``nginx`` configuration
273(e.g. "``/etc/nginx/sites-enabled`` or ``/etc/nginx/conf.d``) with
076bf0cf 274one of the following commands (as the root user)::
4e893b6e 275
076bf0cf
WKG
276 ln -s /srv/mediagoblin.example.org/nginx.conf /etc/nginx/conf.d/
277 ln -s /srv/mediagoblin.example.org/nginx.conf /etc/nginx/sites-enabled/
4e893b6e 278
279Modify these commands and locations depending on your preferences and
280the existing configuration of your nginx instance. The contents of
076bf0cf
WKG
281this ``nginx.conf`` file should be modeled on the following::
282
283 server {
284 #################################################
285 # Stock useful config options, but ignore them :)
286 #################################################
287 include /etc/nginx/mime.types;
288
289 autoindex off;
290 default_type application/octet-stream;
291 sendfile on;
292
293 # Gzip
294 gzip on;
295 gzip_min_length 1024;
296 gzip_buffers 4 32k;
297 gzip_types text/plain text/html application/x-javascript text/javascript text/xml text/css;
298
299 #####################################
300 # Mounting MediaGoblin stuff
301 # This is the section you should read
302 #####################################
303
304 # Change this to update the upload size limit for your users
305 client_max_body_size 8m;
306
a49c741f
CAW
307 # prevent attacks (someone uploading a .txt file that the browser
308 # interprets as an HTML file, etc.)
309 add_header X-Content-Type-Options nosniff;
37b48053 310
076bf0cf
WKG
311 server_name mediagoblin.example.org www.mediagoblin.example.org;
312 access_log /var/log/nginx/mediagoblin.example.access.log;
313 error_log /var/log/nginx/mediagoblin.example.error.log;
314
315 # MediaGoblin's stock static files: CSS, JS, etc.
316 location /mgoblin_static/ {
317 alias /srv/mediagoblin.example.org/mediagoblin/mediagoblin/static/;
318 }
319
320 # Instance specific media:
321 location /mgoblin_media/ {
322 alias /srv/mediagoblin.example.org/mediagoblin/user_dev/media/public/;
323 }
324
8d051cc0
CAW
325 # Theme static files (usually symlinked in)
326 location /theme_static/ {
327 alias /srv/mediagoblin.example.org/mediagoblin/user_dev/theme_static/;
328 }
329
24ede044
CAW
330 # Plugin static files (usually symlinked in)
331 location /plugin_static/ {
332 alias /srv/mediagoblin.example.org/mediagoblin/user_dev/plugin_static/;
333 }
334
076bf0cf
WKG
335 # Mounting MediaGoblin itself via FastCGI.
336 location / {
337 fastcgi_pass 127.0.0.1:26543;
338 include /etc/nginx/fastcgi_params;
339
340 # our understanding vs nginx's handling of script_name vs
341 # path_info don't match :)
342 fastcgi_param PATH_INFO $fastcgi_script_name;
343 fastcgi_param SCRIPT_NAME "";
4e893b6e 344 }
076bf0cf 345 }
4e893b6e 346
347Now, nginx instance is configured to serve the MediaGoblin
348application. Perform a quick test to ensure that this configuration
349works. Restart nginx so it picks up your changes, with a command that
076bf0cf 350resembles one of the following (as the root user)::
4e893b6e 351
076bf0cf
WKG
352 sudo /etc/init.d/nginx restart
353 sudo /etc/rc.d/nginx restart
4e893b6e 354
355Now start MediaGoblin. Use the following command sequence as an
076bf0cf 356example::
4e893b6e 357
076bf0cf
WKG
358 cd /srv/mediagoblin.example.org/mediagoblin/
359 ./lazyserver.sh --server-name=fcgi fcgi_host=127.0.0.1 fcgi_port=26543
4e893b6e 360
361Visit the site you've set up in your browser by visiting
518c5eb3 362<http://mediagoblin.example.org>. You should see MediaGoblin!
4e893b6e 363
4e893b6e 364.. note::
365
a085dda5 366 The configuration described above is sufficient for development and
367 smaller deployments. However, for larger production deployments
368 with larger processing requirements, see the
369 ":doc:`production-deployments`" documentation.
a7d2a892
ST
370
371
372Apache
373~~~~~~
374
041d2fd7
CAW
375Instructions and scripts for running MediaGoblin on an Apache server
376can be found on the `MediaGoblin wiki <http://wiki.mediagoblin.org/Deployment>`_.
b835e153
E
377
378
379Security Considerations
380~~~~~~~~~~~~~~~~~~~~~~~
381
382.. warning::
383
384 The directory ``user_dev/crypto/`` contains some very
385 sensitive files.
386 Especially the ``itsdangeroussecret.bin`` is very important
387 for session security. Make sure not to leak its contents anywhere.
388 If the contents gets leaked nevertheless, delete your file
389 and restart the server, so that it creates a new secret key.
390 All previous sessions will be invalifated then.