Ship to Production
1. Set the Node.JS environment to production
Set the NODE_ENV
environment variable to production
.
NODE_ENV=production npm run start
2. Use HTTPS
You must use HTTPS to prevent man-in-the-middle attacks. Otherwise, your credentials and authentication tokens will appear in clear on the network.
If you use cookies, make sure to let them only be sent to the server when the request is made using SSL. You can do such thing with the cookie secure
directive.
config/production.yml (example)
settings:
// If you use sessions
session:
cookie:
secure: true
// If you use CSRF protection with cookies
csrf:
cookie:
secure: true
3. Generate Different Secrets
Use different secrets for your production environment (JWT, session, csrf, etc). Specify them using environment variables or a .env
file.
.env (example)
SETTINGS_SESSION_SECRET=ctpQxVTme8rA1SR1AnKHTd/FknqcrhpPlMPGVMSSgjk
SETTINGS_CSRF_SECRET=PZFo9stbQtGvQ2clYSrgn+FUjf55pjajHJslRaBRNo4
SETTINGS_JWT_SECRET_OR_PUBLIC_KEY=YZP0iv6gM+VBTxk61l8nKUno2QxsQHO9hm8XfeedZUw
You can generate 256-bit secrets encoded in base64 with the following command:
foal createsecret
4. Database Credentials & Migrations
Use different credentials for your production database. Specify them using environment variables or a .env
file.
If you use database migrations, run them on your production server with the following command:
npm run migration:run