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