Production Deployment of Strapi CMS: A Complete Guide

When moving Strapi to production, CORS errors, incorrect database configuration, and API token leaks are common. The issue becomes especially acute when a Next.js frontend tries to send requests to the API on a different domain — the browser blocks CORS, and the client sees empty pages. A typical pr

Development and maintenance of all types of websites:

Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:

Frequently Asked Questions

Latest works

  • image_website-b2b-advance_0.webp
    B2B ADVANCE company website development
    1414
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1285
  • image_websites_belfingroup_462_0.webp
    Website development for BELFINGROUP
    982
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1241
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    982
  • image_bitrix-bitrix-24-1c_fixper_448_0.webp
    Website development for FIXPER company
    994

When moving Strapi to production, CORS errors, incorrect database configuration, and API token leaks are common. The issue becomes especially acute when a Next.js frontend tries to send requests to the API on a different domain — the browser blocks CORS, and the client sees empty pages. A typical project includes 5 to 10 content types, and each error can cost several hours of debugging. We solve these problems systematically: we configure everything with security and performance in mind. This article provides a ready-made recipe for complete Strapi installation and Strapi setup for production, proven on 30+ projects. Our turnkey Strapi setup starts at $500 and can save you up to 40% on server costs compared to DIY, which translates to up to $2400 per year. According to Strapi's official documentation, this flexible headless CMS allows you to quickly create an API, but production setup requires attention to security. In a typical project, TTFB improvement after optimization reaches 30-40%, and the number of CORS errors drops to zero with proper configuration. With over 5 years of experience and 30+ successful deployments, we guarantee a secure and optimized Strapi environment.

How to Configure Strapi for Production?

Server Requirements and Database

Before starting, ensure the server meets the minimum requirements:

  • Node.js 18 or 20 (LTS)
  • npm 6+ / yarn 1.22+ / pnpm 6+
  • PostgreSQL / MySQL / SQLite
  • 2 GB RAM and 20 GB SSD for an average project

Initialize the project with PostgreSQL using a single command:

npx create-strapi-app@latest my-strapi --dbclient=postgres cd my-strapi npm run develop # later for production: NODE_ENV=production npm run build NODE_ENV=production npm start 

During the first launch, an administrator is created. In development mode, the Content-Type Builder is available for rapid prototyping.

Configuring CORS and Security

CORS policy is one of the most common causes of errors when integrating Strapi with a frontend. If you don't specify an explicit origin, the browser blocks requests. In the console, you'll see an Access-Control-Allow-Origin error. Configuring via strapi::cors with the FRONTEND_URL environment variable solves the problem. Additionally, we configure security headers — this prevents XSS and script injection.

// config/middlewares.js module.exports = [ 'strapi::logger', 'strapi::errors', { name: 'strapi::security', config: { contentSecurityPolicy: { useDefaults: true, directives: { 'img-src': ["'self'", 'data:', 'blob:', 'res.cloudinary.com'], }, }, }, }, { name: 'strapi::cors', config: { origin: [process.env.FRONTEND_URL] } }, 'strapi::poweredBy', 'strapi::query', 'strapi::body', 'strapi::session', 'strapi::favicon', 'strapi::public', ] 

Database and Server Configuration

Combine database and server configuration into one block:

// config/database.js module.exports = ({ env }) => ({ connection: { client: 'postgres', connection: { connectionString: env('DATABASE_URL'), ssl: env.bool('DATABASE_SSL', false) ? { rejectUnauthorized: false } : false, }, pool: { min: 2, max: 10 }, }, }) // config/server.js module.exports = ({ env }) => ({ host: env('HOST', '0.0.0.0'), port: env.int('PORT', 1337), url: env('PUBLIC_URL', 'http://localhost:1337'), }) 

Performance Comparison: PostgreSQL vs SQLite

Criterion PostgreSQL SQLite
Concurrent query support Yes, up to hundreds of connections Limited, one writer
Data types Advanced (JSON, arrays) Basic
JOIN query performance 2-3x faster Slower on large datasets
Production recommendation Yes Development only

PostgreSQL handles concurrent writing 3x faster than SQLite, making it the production standard.

Importance of the Right Connection Pool

A connection pool (min:2, max:10) prevents database connection exhaustion under peak loads. In a production environment with PostgreSQL, the pool is critical: without it, each request opens a new connection, increasing response time to 200-300 ms. Configuring the pool reduces latency to 10-20 ms — an improvement of 93%. Server resource savings reach 40% due to connection reuse.

Additional Security Settings

In addition to CORS and CSP, configure the X-Frame-Options header (protection against clickjacking) and X-Content-Type-Options (prevention of MIME sniffing). Use the strapi::security middleware with the appropriate directives for this. Also, enable rate limiting via koa-rate-limit to protect against brute-force attacks.

Managing API Tokens and Deployment

Create a token in the Admin Panel: Settings → API Tokens → Create new API Token. Choose permissions (Read-only for public requests) and copy the token — it is shown only once. Add environment variables to the frontend .env:

STRAPI_URL=http://localhost:1337 STRAPI_API_TOKEN=your-api-token-here 

For reliable process management, we use PM2:

// ecosystem.config.js module.exports = { apps: [{ name: 'strapi', script: 'npm', args: 'start', env: { NODE_ENV: 'production', DATABASE_URL: 'postgresql://...', APP_KEYS: '...', API_TOKEN_SALT: '...', JWT_SECRET: '...', }, }], } 

Comparison of deployment methods:

Method Process Management Scaling Complexity
PM2 Simple, auto-restart Clustering Low
Docker Containerization Orchestration Medium
Heroku Platform Auto-scaling Low

Optimizing TTFB

Key factors: using a connection pool (already covered), caching requests with Redis or Varnish, enabling HTTP/2 on the server. In Strapi, you can install the @strapi/plugin-redis plugin to cache responses. This reduces TTFB by 30-40% without changing code, and with Redis caching, TTFB drops by 50%.

Common Mistakes When Moving to Production

  • Forgetting to set PUBLIC_URL — links in the admin panel break.
  • Not configuring SSL for the database — connection is rejected.
  • Leaving development keys — data leakage.
  • Not restricting CORS — access from any domain.
  • Not setting ADMIN_JWT_SECRET — risk of session forgery.

What's Included in the Strapi Setup Turnkey

  • Project initialization and PostgreSQL connection
  • CORS, Security, SSL configuration
  • API token creation and .env setup
  • PM2 deployment and monitoring
  • Endpoint documentation
  • Post-launch support (up to one month)

Work Process and Timelines

  1. Requirements analysis and hosting selection
  2. Strapi installation and configuration
  3. Database and middleware setup
  4. API token creation and frontend integration
  5. Production deployment and monitoring

Basic installation with PostgreSQL, CORS configuration, and the first content type takes 2 to 4 hours. Full production configuration takes from 1 day. The cost is calculated individually from $500. With our setup, you can save up to $2400 per year on server costs. Our guarantee: 99.9% uptime and 50% faster response times. Contact us for a detailed discussion. Order a turnkey Strapi setup — our engineers will help with the configuration.