Use of deprecated frombytes when processing videos causes the task to fail
[mediagoblin.git] / docs / source / siteadmin / deploying.rst
CommitLineData
473a4431
CAW
1.. MediaGoblin Documentation
2
fd5c35e5 3 Written in 2011, 2012, 2013 by MediaGoblin contributors
473a4431
CAW
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
44db13fa
JC
20GNU MediaGoblin is fairly new, and so at the time of writing there aren't
21easy package-manager-friendly methods to install it. However, doing a basic
22install isn't too complex in and of itself. Following this deployment guide
23will take you step-by-step through setting up your own instance of MediaGoblin.
56d507b6 24
44db13fa
JC
25Of course, when it comes to setting up web applications like MediaGoblin,
26there's an almost infinite way to deploy things, so for now, we'll keep it
27simple with some assumptions. We recommend a setup that combines MediaGoblin +
28virtualenv + fastcgi + nginx on a .deb- or .rpm-based GNU/Linux distro.
29
30Other deployment options (e.g., deploying on FreeBSD, Arch Linux, using
31Apache, etc.) are possible, though! If you'd prefer a different deployment
32approach, see our
33`Deployment wiki page <http://wiki.mediagoblin.org/Deployment>`_.
e260065a 34
076bf0cf
WKG
35.. note::
36
37 These tools are for site administrators wanting to deploy a fresh
44db13fa 38 install. If you want to join in as a contributor, see our
076bf0cf 39 `Hacking HOWTO <http://wiki.mediagoblin.org/HackingHowto>`_ instead.
e260065a 40
44db13fa
JC
41.. note::
42
43 Throughout the documentation we use the ``sudo`` command to indicate that
44 an instruction requires elevated user privileges to run. You can issue
45 these commands as the ``root`` user if you prefer.
46
47 If you need help configuring ``sudo``, see the
48 `Debian wiki <https://wiki.debian.org/sudo/>`_ or the
49 `Fedora Project wiki <https://fedoraproject.org/wiki/Configuring_Sudo/>`_.
50
4d8a3cd8 51
4e893b6e 52Prepare System
53--------------
e260065a 54
4e893b6e 55Dependencies
56~~~~~~~~~~~~
e260065a 57
4e893b6e 58MediaGoblin has the following core dependencies:
e260065a 59
2acf47d8 60- Python 2.7
4e893b6e 61- `python-lxml <http://lxml.de/>`_
62- `git <http://git-scm.com/>`_
775ec9e8 63- `SQLite <http://www.sqlite.org/>`_/`PostgreSQL <http://www.postgresql.org/>`_
4e893b6e 64- `Python Imaging Library <http://www.pythonware.com/products/pil/>`_ (PIL)
65- `virtualenv <http://www.virtualenv.org/>`_
4ec1af11 66- `nodejs <https://nodejs.org>`_
e260065a 67
4e893b6e 68On a DEB-based system (e.g Debian, gNewSense, Trisquel, Ubuntu, and
7798f911 69derivatives) issue the following command::
e260065a 70
44db13fa 71 sudo apt-get install git-core python python-dev python-lxml \
4c89287c
JC
72 python-imaging python-virtualenv npm nodejs-legacy automake \
73 nginx
e260065a 74
4e893b6e 75On a RPM-based system (e.g. Fedora, RedHat, and derivatives) issue the
7798f911 76following command::
4e893b6e 77
44db13fa 78 sudo yum install python-paste-deploy python-paste-script \
076bf0cf 79 git-core python python-devel python-lxml python-imaging \
4c89287c 80 python-virtualenv npm automake nginx
e260065a 81
775ec9e8
JW
82Configure PostgreSQL
83~~~~~~~~~~~~~~~~~~~~
84
85.. note::
86
7798f911
WKG
87 MediaGoblin currently supports PostgreSQL and SQLite. The default is a
88 local SQLite database. This will "just work" for small deployments.
775ec9e8 89
7798f911
WKG
90 For medium to large deployments we recommend PostgreSQL.
91
92 If you don't want/need postgres, skip this section.
93
44db13fa 94These are the packages needed for Debian Jessie (stable)::
775ec9e8 95
44db13fa 96 sudo apt-get install postgresql postgresql-client python-psycopg2
c3075e91
JC
97
98These are the packages needed for an RPM-based system::
99
44db13fa 100 sudo yum install postgresql postgresql-server python-psycopg2
c3075e91 101
a0392075
JC
102An rpm-based system also requires that you initialize and start the
103PostgresSQL database with a few commands. The following commands are
104not needed on a Debian-based platform, however::
c3075e91 105
44db13fa 106 sudo /usr/bin/postgresql-setup initdb
a0392075
JC
107 sudo systemctl enable postgresql
108 sudo systemctl start postgresql
775ec9e8
JW
109
110The installation process will create a new *system* user named ``postgres``,
c3075e91 111which will have privilegies sufficient to manage the database. We will create a
775ec9e8
JW
112new database user with restricted privilegies and a new database owned by our
113restricted database user for our MediaGoblin instance.
114
115In this example, the database user will be ``mediagoblin`` and the database
116name will be ``mediagoblin`` too.
117
c3075e91
JC
118We'll add these entities by first switching to the *postgres* account::
119
44db13fa 120 sudo su - postgres
775ec9e8 121
c3075e91
JC
122This will change your prompt to a shell prompt, such as *-bash-4.2$*. Enter
123the following *createuser* and *createdb* commands at that prompt. We'll
124create the *mediagoblin* database user first::
775ec9e8 125
44db13fa
JC
126 # this command and the one that follows are run as the ``postgres`` user:
127 createuser -A -D mediagoblin
775ec9e8 128
c3075e91
JC
129Then we'll create the database where all of our MediaGoblin data will be stored::
130
44db13fa 131 createdb -E UNICODE -O mediagoblin mediagoblin
775ec9e8
JW
132
133where the first ``mediagoblin`` is the database owner and the second
134``mediagoblin`` is the database name.
135
7bba6d2e 136Type ``exit`` to exit from the 'postgres' user account.::
c3075e91 137
7bba6d2e 138 exit
c3075e91 139
775ec9e8
JW
140.. caution:: Where is the password?
141
142 These steps enable you to authenticate to the database in a password-less
143 manner via local UNIX authentication provided you run the MediaGoblin
144 application as a user with the same name as the user you created in
145 PostgreSQL.
146
147 More on this in :ref:`Drop Privileges for MediaGoblin <drop-privileges-for-mediagoblin>`.
148
149
775ec9e8
JW
150.. _drop-privileges-for-mediagoblin:
151
4e893b6e 152Drop Privileges for MediaGoblin
153~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17c71230 154
fd5c35e5 155MediaGoblin does not require special permissions or elevated
1b4a9f26
CAW
156access to run. As such, the preferred way to run MediaGoblin is to
157create a dedicated, unprivileged system user for the sole purpose of running
fd5c35e5
JC
158MediaGoblin. Running MediaGoblin processes under an unpriviledged system user
159helps to keep it more secure.
160
161The following command (entered as root or with sudo) will create a
162system account with a username of ``mediagoblin``. You may choose a different
4c89287c 163username if you wish.
fd5c35e5 164
4c89287c 165If you are using a Debian-based system, enter this command::
fd5c35e5 166
4c89287c
JC
167 sudo useradd -c "GNU MediaGoblin system account" -d /var/lib/mediagoblin -m -r -g www-data mediagoblin
168
169If you are using an RPM-based system, enter this command::
170
171 sudo useradd -c "GNU MediaGoblin system account" -d /var/lib/mediagoblin -m -r -g nginx mediagoblin
172
173This will create a ``mediagoblin`` user and assign it to a group that is
174associated with the web server. This will ensure that the web server can
175read the media files (images, videos, etc.) that users upload.
176
177We will also create a ``mediagoblin`` group and associate the mediagoblin
178user with that group, as well::
179
180 sudo groupadd mediagoblin && sudo usermod --append -G mediagoblin mediagoblin
181
fd5c35e5 182No password will be assigned to this account, and you will not be able
9a1ba0e8 183to log in as this user. To switch to this account, enter::
fd5c35e5 184
44db13fa 185 sudo su mediagoblin -s /bin/bash
fd5c35e5 186
ef2642f7
JC
187To return to your regular user account after using the system account, type
188``exit``.
fd5c35e5 189
fd5c35e5
JC
190.. _create-mediagoblin-directory:
191
192Create a MediaGoblin Directory
193~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17c71230 194
4e893b6e 195You should create a working directory for MediaGoblin. This document
076bf0cf 196assumes your local git repository will be located at
fd5c35e5
JC
197``/srv/mediagoblin.example.org/mediagoblin/``.
198Substitute your prefered local deployment path as needed.
199
200Setting up the working directory requires that we first create the directory
201with elevated priviledges, and then assign ownership of the directory
202to the unpriviledged system account.
17c71230 203
4c89287c
JC
204To do this, enter the following command, changing the defaults to suit your
205particular requirements. On a Debian-based platform you will enter this::
206
207 sudo mkdir -p /srv/mediagoblin.example.org && sudo chown -hR mediagoblin:www-data /srv/mediagoblin.example.org
208
209On an RPM-based distribution, enter this command::
17c71230 210
4c89287c 211 sudo mkdir -p /srv/mediagoblin.example.org && sudo chown -hR mediagoblin:nginx /srv/mediagoblin.example.org
fd5c35e5 212
c3075e91 213.. note::
fd5c35e5 214
c3075e91
JC
215 Unless otherwise noted, the remainder of this document assumes that all
216 operations are performed using this unpriviledged account.
17c71230 217
4e893b6e 218
e260065a 219Install MediaGoblin and Virtualenv
4e893b6e 220----------------------------------
e260065a 221
44db13fa
JC
222We will now switch to our 'mediagoblin' system account, and then set up
223our MediaGoblin source code repository and its necessary services.
224You should modify these commands to suit your own environment.
17c71230 225
fd5c35e5
JC
226Change to the MediaGoblin directory that you just created::
227
44db13fa 228 sudo su mediagoblin -s /bin/bash # to change to the 'mediagoblin' account
9a1ba0e8 229 $ cd /srv/mediagoblin.example.org
17c71230 230
d3b1fd2e 231Clone the MediaGoblin repository and set up the git submodules::
e260065a 232
a35b7c7f 233 $ git clone git://git.savannah.gnu.org/mediagoblin.git -b stable
9a1ba0e8
JC
234 $ cd mediagoblin
235 $ git submodule init && git submodule update
e260065a 236
9fa1e602
CAW
237.. note::
238
239 The MediaGoblin repository used to be on gitorious.org, but since
240 gitorious.org shut down, we had to move. We are presently on
241 Savannah. You may need to update your git repository location::
242
44db13fa 243 $ git remote set-url origin git://git.savannah.gnu.org/mediagoblin.git
e260065a 244
41dbb27a 245Set up the hacking environment::
3b8251f3 246
9a1ba0e8 247 $ ./bootstrap.sh && ./configure && make
f0e137ab 248
4e893b6e 249The above provides an in-package install of ``virtualenv``. While this
250is counter to the conventional ``virtualenv`` configuration, it is
251more reliable and considerably easier to configure and illustrate. If
252you're familiar with Python packaging you may consider deploying with
c356dc16 253your preferred method.
e260065a 254
8d59cd1f
CAW
255.. note::
256
257 What if you don't want an in-package ``virtualenv``? Maybe you
258 have your own ``virtualenv``, or you are building a MediaGoblin
259 package for a distribution. There's no need necessarily for the
260 virtualenv produced by ``./configure && make`` by default other
261 than attempting to simplify work for developers and people
262 deploying by hiding all the virtualenv and bower complexity.
263
264 If you want to install all of MediaGoblin's libraries
265 independently, that's totally fine! You can pass the flag
266 ``--without-virtualenv`` which will skip this step.
267 But you will need to install all those libraries manually and make
268 sure they are on your ``PYTHONPATH`` yourself! (You can still use
269 ``python setup.py develop`` to install some of those libraries,
270 but note that no ``./bin/python`` will be set up for you via this
271 method, since no virtualenv is set up for you!)
272
076bf0cf
WKG
273Assuming you are going to deploy with FastCGI, you should also install
274flup::
99192f24 275
9a1ba0e8 276 $ ./bin/easy_install flup
71ef2007 277
4e893b6e 278This concludes the initial configuration of the development
8d9aa03f 279environment. In the future, when you update your
076bf0cf 280codebase, you should also run::
e260065a 281
9a1ba0e8
JC
282 $ git submodule update && ./bin/python setup.py develop --upgrade && ./bin/gmg dbupdate
283
284.. note::
e260065a 285
9a1ba0e8
JC
286 Note: If you are running an active site, depending on your server
287 configuration, you may need to stop it first or the dbupdate command
288 may hang (and it's certainly a good idea to restart it after the
289 update)
9d5cd0b9
CAW
290
291
4e893b6e 292Deploy MediaGoblin Services
293---------------------------
e260065a 294
a7d2a892
ST
295Edit site configuration
296~~~~~~~~~~~~~~~~~~~~~~~
297
041d2fd7 298A few basic properties must be set before MediaGoblin will work. First
ec255f63
JC
299make a copy of ``mediagoblin.ini`` and ``paste.ini`` for editing so the original
300config files aren't lost (you likely won't need to edit the paste configuration,
301but we'll make a local copy of it just in case)::
a7d2a892 302
ec255f63 303 $ cp -av mediagoblin.ini mediagoblin_local.ini && cp -av paste.ini paste_local.ini
a7d2a892 304
ec255f63 305Then edit mediagoblin_local.ini:
041d2fd7
CAW
306 - Set ``email_sender_address`` to the address you wish to be used as
307 the sender for system-generated emails
308 - Edit ``direct_remote_path``, ``base_dir``, and ``base_url`` if
309 your mediagoblin directory is not the root directory of your
310 vhost.
a7d2a892
ST
311
312
775ec9e8
JW
313Configure MediaGoblin to use the PostgreSQL database
314~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
315
7798f911
WKG
316If you are using postgres, edit the ``[mediagoblin]`` section in your
317``mediagoblin_local.ini`` and put in::
775ec9e8
JW
318
319 sql_engine = postgresql:///mediagoblin
320
321if you are running the MediaGoblin application as the same 'user' as the
322database owner.
323
7798f911 324
775ec9e8
JW
325Update database data structures
326~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
327
7798f911 328Before you start using the database, you need to run::
775ec9e8 329
44db13fa 330 $ ./bin/gmg dbupdate
775ec9e8
JW
331
332to populate the database with the MediaGoblin data structures.
333
334
4e893b6e 335Test the Server
336~~~~~~~~~~~~~~~
e260065a 337
4e893b6e 338At this point MediaGoblin should be properly installed. You can
076bf0cf 339test the deployment with the following command::
e260065a 340
44db13fa 341 $ ./lazyserver.sh --server-name=broadcast
e260065a 342
4e893b6e 343You should be able to connect to the machine on port 6543 in your
344browser to confirm that the service is operable.
e260065a 345
3948e44c
JC
346The next series of commands will need to be run as a priviledged user. Type
347exit to return to the root/sudo account.::
348
349 exit
350
cd1abb11
CAW
351.. _webserver-config:
352
56d507b6 353
a7d2a892
ST
354FastCGI and nginx
355~~~~~~~~~~~~~~~~~
356
357This configuration example will use nginx, however, you may
4e893b6e 358use any webserver of your choice as long as it supports the FastCGI
359protocol. If you do not already have a web server, consider nginx, as
360the configuration files may be more clear than the
361alternatives.
362
363Create a configuration file at
364``/srv/mediagoblin.example.org/nginx.conf`` and create a symbolic link
365into a directory that will be included in your ``nginx`` configuration
366(e.g. "``/etc/nginx/sites-enabled`` or ``/etc/nginx/conf.d``) with
cd7af789 367one of the following commands.
4e893b6e 368
cd7af789
JC
369On a DEB-based system (e.g Debian, gNewSense, Trisquel, Ubuntu, and
370derivatives) issue the following commands::
371
44db13fa 372 sudo ln -s /srv/mediagoblin.example.org/nginx.conf /etc/nginx/sites-enabled/
cd7af789
JC
373 sudo systemctl enable nginx
374
375On a RPM-based system (e.g. Fedora, RedHat, and derivatives) issue the
376following commands::
4e893b6e 377
cd7af789
JC
378 sudo ln -s /srv/mediagoblin.example.org/nginx.conf /etc/nginx/conf.d/
379 sudo systemctl enable nginx
380
381You can modify these commands and locations depending on your preferences and
4e893b6e 382the existing configuration of your nginx instance. The contents of
076bf0cf
WKG
383this ``nginx.conf`` file should be modeled on the following::
384
385 server {
386 #################################################
387 # Stock useful config options, but ignore them :)
388 #################################################
389 include /etc/nginx/mime.types;
390
391 autoindex off;
392 default_type application/octet-stream;
393 sendfile on;
394
395 # Gzip
396 gzip on;
397 gzip_min_length 1024;
398 gzip_buffers 4 32k;
cd7af789 399 gzip_types text/plain application/x-javascript text/javascript text/xml text/css;
076bf0cf
WKG
400
401 #####################################
402 # Mounting MediaGoblin stuff
403 # This is the section you should read
404 #####################################
405
406 # Change this to update the upload size limit for your users
407 client_max_body_size 8m;
408
a49c741f
CAW
409 # prevent attacks (someone uploading a .txt file that the browser
410 # interprets as an HTML file, etc.)
411 add_header X-Content-Type-Options nosniff;
37b48053 412
076bf0cf
WKG
413 server_name mediagoblin.example.org www.mediagoblin.example.org;
414 access_log /var/log/nginx/mediagoblin.example.access.log;
415 error_log /var/log/nginx/mediagoblin.example.error.log;
416
417 # MediaGoblin's stock static files: CSS, JS, etc.
418 location /mgoblin_static/ {
419 alias /srv/mediagoblin.example.org/mediagoblin/mediagoblin/static/;
420 }
421
422 # Instance specific media:
423 location /mgoblin_media/ {
424 alias /srv/mediagoblin.example.org/mediagoblin/user_dev/media/public/;
425 }
426
8d051cc0
CAW
427 # Theme static files (usually symlinked in)
428 location /theme_static/ {
429 alias /srv/mediagoblin.example.org/mediagoblin/user_dev/theme_static/;
430 }
431
24ede044
CAW
432 # Plugin static files (usually symlinked in)
433 location /plugin_static/ {
434 alias /srv/mediagoblin.example.org/mediagoblin/user_dev/plugin_static/;
435 }
436
076bf0cf
WKG
437 # Mounting MediaGoblin itself via FastCGI.
438 location / {
439 fastcgi_pass 127.0.0.1:26543;
440 include /etc/nginx/fastcgi_params;
441
442 # our understanding vs nginx's handling of script_name vs
443 # path_info don't match :)
444 fastcgi_param PATH_INFO $fastcgi_script_name;
445 fastcgi_param SCRIPT_NAME "";
4e893b6e 446 }
076bf0cf 447 }
4e893b6e 448
f44bd7dc
CAW
449The first four ``location`` directives instruct Nginx to serve the
450static and uploaded files directly rather than through the MediaGoblin
451process. This approach is faster and requires less memory.
452
453.. note::
454
cd7af789 455 The user who owns the Nginx process, normally ``www-data`` or ``nginx``,
f44bd7dc
CAW
456 requires execute permission on the directories ``static``,
457 ``public``, ``theme_static`` and ``plugin_static`` plus all their
458 parent directories. This user also requires read permission on all
459 the files within these directories. This is normally the default.
460
cd7af789
JC
461Nginx is now configured to serve the MediaGoblin application. Perform a quick
462test to ensure that this configuration works::
463
464 nginx -t
465
466If you encounter any errors, review your nginx configuration files, and try to
467resolve them. If you do not encounter any errors, you can start your nginx
468server with one of the following commands (depending on your environment)::
4e893b6e 469
076bf0cf
WKG
470 sudo /etc/init.d/nginx restart
471 sudo /etc/rc.d/nginx restart
44db13fa 472 sudo systemctl restart nginx
4e893b6e 473
474Now start MediaGoblin. Use the following command sequence as an
076bf0cf 475example::
4e893b6e 476
076bf0cf 477 cd /srv/mediagoblin.example.org/mediagoblin/
cd7af789 478 su mediagoblin -s /bin/bash
076bf0cf 479 ./lazyserver.sh --server-name=fcgi fcgi_host=127.0.0.1 fcgi_port=26543
4e893b6e 480
481Visit the site you've set up in your browser by visiting
518c5eb3 482<http://mediagoblin.example.org>. You should see MediaGoblin!
4e893b6e 483
4e893b6e 484.. note::
485
a085dda5 486 The configuration described above is sufficient for development and
487 smaller deployments. However, for larger production deployments
488 with larger processing requirements, see the
489 ":doc:`production-deployments`" documentation.
a7d2a892
ST
490
491
492Apache
493~~~~~~
494
041d2fd7
CAW
495Instructions and scripts for running MediaGoblin on an Apache server
496can be found on the `MediaGoblin wiki <http://wiki.mediagoblin.org/Deployment>`_.
b835e153
E
497
498
499Security Considerations
500~~~~~~~~~~~~~~~~~~~~~~~
501
502.. warning::
503
504 The directory ``user_dev/crypto/`` contains some very
505 sensitive files.
506 Especially the ``itsdangeroussecret.bin`` is very important
507 for session security. Make sure not to leak its contents anywhere.
508 If the contents gets leaked nevertheless, delete your file
509 and restart the server, so that it creates a new secret key.
fd5c35e5
JC
510 All previous sessions will be invalidated.
511
f44bd7dc
CAW
512..
513 Local variables:
514 fill-column: 70
515 End: