X-Git-Url: http://git.squeep.com/?p=websub-hub;a=blobdiff_plain;f=README.md;fp=README.md;h=41f3e83dcd0d44661a1190f9fe3fab874d9292d6;hp=17b47334fb708a2fbc1eabe252d79976ce8fe0d0;hb=f3e42bc1c361f932ccbc0e40d3692cdbb77ee437;hpb=41ae00113d39abada54823b7133c473b8fb758f5 diff --git a/README.md b/README.md index 17b4733..41f3e83 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ One way of deploying this server is behind nginx, with the pm2 package to manage - Prepare PostgreSQL with a user and database, using e.g. ```psql```. >
   > CREATE ROLE websubhub WITH CREATEDB LOGIN PASSWORD 'mypassword';
-  > GRANT websubhub TO postgres
+  > GRANT websubhub TO postgres;
   > CREATE DATABASE websubhub OWNER=websubhub;
   > GRANT ALL PRIVILEGES ON DATABASE websubhub TO websubhub;
   > \c websubhub