"Should I enable registration?" section
[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
b791ae97
JC
249Create and set the proper permissions on the ``user_dev`` directory.
250This directory will be used to store uploaded media files::
251
252 $ mkdir user_dev && chmod 750 user_dev
253
254Assuming you are going to deploy with FastCGI, you should also install
255flup::
256
257 $ ./bin/easy_install flup
258
4e893b6e 259The above provides an in-package install of ``virtualenv``. While this
260is counter to the conventional ``virtualenv`` configuration, it is
261more reliable and considerably easier to configure and illustrate. If
262you're familiar with Python packaging you may consider deploying with
c356dc16 263your preferred method.
e260065a 264
8d59cd1f
CAW
265.. note::
266
267 What if you don't want an in-package ``virtualenv``? Maybe you
268 have your own ``virtualenv``, or you are building a MediaGoblin
269 package for a distribution. There's no need necessarily for the
270 virtualenv produced by ``./configure && make`` by default other
271 than attempting to simplify work for developers and people
272 deploying by hiding all the virtualenv and bower complexity.
273
274 If you want to install all of MediaGoblin's libraries
275 independently, that's totally fine! You can pass the flag
276 ``--without-virtualenv`` which will skip this step.
277 But you will need to install all those libraries manually and make
278 sure they are on your ``PYTHONPATH`` yourself! (You can still use
279 ``python setup.py develop`` to install some of those libraries,
280 but note that no ``./bin/python`` will be set up for you via this
281 method, since no virtualenv is set up for you!)
282
b791ae97 283This concludes the initial configuration of the MediaGoblin
8d9aa03f 284environment. In the future, when you update your
076bf0cf 285codebase, you should also run::
e260065a 286
9a1ba0e8
JC
287 $ git submodule update && ./bin/python setup.py develop --upgrade && ./bin/gmg dbupdate
288
289.. note::
e260065a 290
9a1ba0e8
JC
291 Note: If you are running an active site, depending on your server
292 configuration, you may need to stop it first or the dbupdate command
293 may hang (and it's certainly a good idea to restart it after the
294 update)
9d5cd0b9
CAW
295
296
4e893b6e 297Deploy MediaGoblin Services
298---------------------------
e260065a 299
a7d2a892
ST
300Edit site configuration
301~~~~~~~~~~~~~~~~~~~~~~~
302
041d2fd7 303A few basic properties must be set before MediaGoblin will work. First
ec255f63
JC
304make a copy of ``mediagoblin.ini`` and ``paste.ini`` for editing so the original
305config files aren't lost (you likely won't need to edit the paste configuration,
306but we'll make a local copy of it just in case)::
a7d2a892 307
ec255f63 308 $ cp -av mediagoblin.ini mediagoblin_local.ini && cp -av paste.ini paste_local.ini
a7d2a892 309
ec255f63 310Then edit mediagoblin_local.ini:
041d2fd7
CAW
311 - Set ``email_sender_address`` to the address you wish to be used as
312 the sender for system-generated emails
313 - Edit ``direct_remote_path``, ``base_dir``, and ``base_url`` if
314 your mediagoblin directory is not the root directory of your
315 vhost.
a7d2a892
ST
316
317
775ec9e8
JW
318Configure MediaGoblin to use the PostgreSQL database
319~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
320
7798f911
WKG
321If you are using postgres, edit the ``[mediagoblin]`` section in your
322``mediagoblin_local.ini`` and put in::
775ec9e8
JW
323
324 sql_engine = postgresql:///mediagoblin
325
326if you are running the MediaGoblin application as the same 'user' as the
327database owner.
328
7798f911 329
775ec9e8
JW
330Update database data structures
331~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
332
7798f911 333Before you start using the database, you need to run::
775ec9e8 334
44db13fa 335 $ ./bin/gmg dbupdate
775ec9e8
JW
336
337to populate the database with the MediaGoblin data structures.
338
339
4e893b6e 340Test the Server
341~~~~~~~~~~~~~~~
e260065a 342
4e893b6e 343At this point MediaGoblin should be properly installed. You can
076bf0cf 344test the deployment with the following command::
e260065a 345
44db13fa 346 $ ./lazyserver.sh --server-name=broadcast
e260065a 347
4e893b6e 348You should be able to connect to the machine on port 6543 in your
349browser to confirm that the service is operable.
e260065a 350
3948e44c
JC
351The next series of commands will need to be run as a priviledged user. Type
352exit to return to the root/sudo account.::
353
354 exit
355
cd1abb11
CAW
356.. _webserver-config:
357
56d507b6 358
a7d2a892
ST
359FastCGI and nginx
360~~~~~~~~~~~~~~~~~
361
362This configuration example will use nginx, however, you may
4e893b6e 363use any webserver of your choice as long as it supports the FastCGI
364protocol. If you do not already have a web server, consider nginx, as
365the configuration files may be more clear than the
366alternatives.
367
368Create a configuration file at
369``/srv/mediagoblin.example.org/nginx.conf`` and create a symbolic link
370into a directory that will be included in your ``nginx`` configuration
371(e.g. "``/etc/nginx/sites-enabled`` or ``/etc/nginx/conf.d``) with
cd7af789 372one of the following commands.
4e893b6e 373
cd7af789
JC
374On a DEB-based system (e.g Debian, gNewSense, Trisquel, Ubuntu, and
375derivatives) issue the following commands::
376
44db13fa 377 sudo ln -s /srv/mediagoblin.example.org/nginx.conf /etc/nginx/sites-enabled/
cd7af789
JC
378 sudo systemctl enable nginx
379
380On a RPM-based system (e.g. Fedora, RedHat, and derivatives) issue the
381following commands::
4e893b6e 382
cd7af789
JC
383 sudo ln -s /srv/mediagoblin.example.org/nginx.conf /etc/nginx/conf.d/
384 sudo systemctl enable nginx
385
386You can modify these commands and locations depending on your preferences and
4e893b6e 387the existing configuration of your nginx instance. The contents of
076bf0cf
WKG
388this ``nginx.conf`` file should be modeled on the following::
389
390 server {
391 #################################################
392 # Stock useful config options, but ignore them :)
393 #################################################
394 include /etc/nginx/mime.types;
395
396 autoindex off;
397 default_type application/octet-stream;
398 sendfile on;
399
400 # Gzip
401 gzip on;
402 gzip_min_length 1024;
403 gzip_buffers 4 32k;
cd7af789 404 gzip_types text/plain application/x-javascript text/javascript text/xml text/css;
076bf0cf
WKG
405
406 #####################################
407 # Mounting MediaGoblin stuff
408 # This is the section you should read
409 #####################################
410
411 # Change this to update the upload size limit for your users
412 client_max_body_size 8m;
413
a49c741f
CAW
414 # prevent attacks (someone uploading a .txt file that the browser
415 # interprets as an HTML file, etc.)
416 add_header X-Content-Type-Options nosniff;
37b48053 417
076bf0cf
WKG
418 server_name mediagoblin.example.org www.mediagoblin.example.org;
419 access_log /var/log/nginx/mediagoblin.example.access.log;
420 error_log /var/log/nginx/mediagoblin.example.error.log;
421
422 # MediaGoblin's stock static files: CSS, JS, etc.
423 location /mgoblin_static/ {
424 alias /srv/mediagoblin.example.org/mediagoblin/mediagoblin/static/;
425 }
426
427 # Instance specific media:
428 location /mgoblin_media/ {
429 alias /srv/mediagoblin.example.org/mediagoblin/user_dev/media/public/;
430 }
431
8d051cc0
CAW
432 # Theme static files (usually symlinked in)
433 location /theme_static/ {
434 alias /srv/mediagoblin.example.org/mediagoblin/user_dev/theme_static/;
435 }
436
24ede044
CAW
437 # Plugin static files (usually symlinked in)
438 location /plugin_static/ {
439 alias /srv/mediagoblin.example.org/mediagoblin/user_dev/plugin_static/;
440 }
441
076bf0cf
WKG
442 # Mounting MediaGoblin itself via FastCGI.
443 location / {
444 fastcgi_pass 127.0.0.1:26543;
445 include /etc/nginx/fastcgi_params;
446
447 # our understanding vs nginx's handling of script_name vs
448 # path_info don't match :)
449 fastcgi_param PATH_INFO $fastcgi_script_name;
450 fastcgi_param SCRIPT_NAME "";
4e893b6e 451 }
076bf0cf 452 }
4e893b6e 453
f44bd7dc
CAW
454The first four ``location`` directives instruct Nginx to serve the
455static and uploaded files directly rather than through the MediaGoblin
456process. This approach is faster and requires less memory.
457
458.. note::
459
cd7af789 460 The user who owns the Nginx process, normally ``www-data`` or ``nginx``,
f44bd7dc
CAW
461 requires execute permission on the directories ``static``,
462 ``public``, ``theme_static`` and ``plugin_static`` plus all their
463 parent directories. This user also requires read permission on all
464 the files within these directories. This is normally the default.
465
cd7af789
JC
466Nginx is now configured to serve the MediaGoblin application. Perform a quick
467test to ensure that this configuration works::
468
469 nginx -t
470
471If you encounter any errors, review your nginx configuration files, and try to
472resolve them. If you do not encounter any errors, you can start your nginx
473server with one of the following commands (depending on your environment)::
4e893b6e 474
076bf0cf
WKG
475 sudo /etc/init.d/nginx restart
476 sudo /etc/rc.d/nginx restart
44db13fa 477 sudo systemctl restart nginx
4e893b6e 478
479Now start MediaGoblin. Use the following command sequence as an
076bf0cf 480example::
4e893b6e 481
076bf0cf 482 cd /srv/mediagoblin.example.org/mediagoblin/
cd7af789 483 su mediagoblin -s /bin/bash
076bf0cf 484 ./lazyserver.sh --server-name=fcgi fcgi_host=127.0.0.1 fcgi_port=26543
4e893b6e 485
486Visit the site you've set up in your browser by visiting
518c5eb3 487<http://mediagoblin.example.org>. You should see MediaGoblin!
4e893b6e 488
4e893b6e 489.. note::
490
a085dda5 491 The configuration described above is sufficient for development and
492 smaller deployments. However, for larger production deployments
493 with larger processing requirements, see the
494 ":doc:`production-deployments`" documentation.
a7d2a892
ST
495
496
497Apache
498~~~~~~
499
041d2fd7
CAW
500Instructions and scripts for running MediaGoblin on an Apache server
501can be found on the `MediaGoblin wiki <http://wiki.mediagoblin.org/Deployment>`_.
b835e153
E
502
503
3f088a3f
CAW
504Should I Enable Registration?
505~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
506
507Unfortunately, in this current release of MediaGoblin we are suffering
508from spammers registering to public instances en masse. As such, you
509may want to either:
510
511a) Disable registration on your instance and just make
512 accounts for people you know and trust (eg via the `gmg adduser`
513 command). You can disable registration in your mediagoblin.ini
514 like so::
515
516 [mediagoblin]
517 allow_registration = false
518
519b) Enable a captcha plugin. But unfortunately, though some captcha
520 plugins exist, for various reasons we do not have any general
521 recommendations we can make at this point.
522
523We hope to have a better solution to this situation shortly. We
524apologize for the inconvenience in the meanwhile.
525
526
b835e153
E
527Security Considerations
528~~~~~~~~~~~~~~~~~~~~~~~
529
530.. warning::
531
532 The directory ``user_dev/crypto/`` contains some very
533 sensitive files.
534 Especially the ``itsdangeroussecret.bin`` is very important
535 for session security. Make sure not to leak its contents anywhere.
536 If the contents gets leaked nevertheless, delete your file
537 and restart the server, so that it creates a new secret key.
fd5c35e5
JC
538 All previous sessions will be invalidated.
539
f44bd7dc
CAW
540..
541 Local variables:
542 fill-column: 70
543 End: