Terminating SSL
Most production environments use a load balancer or HTTP proxy (such as nginx) to perform SSL termination on behalf of web applications in that environment.
If you're using Apollo Server in an application that must perform its own SSL termination, you can use the https
module with the apollo-server-express
middleware
library.
Here's an example that uses HTTPS in production and HTTP in development:
index.ts
import express from 'express';import { ApolloServer } from 'apollo-server-express';import { ApolloServerPluginLandingPageLocalDefault } from 'apollo-server-core';import typeDefs from './graphql/schema';import resolvers from './graphql/resolvers';import fs from 'fs';import https from 'https';import http from 'http';async function startApolloServer() {const configurations = {// Note: You may need sudo to run on port 443production: { ssl: true, port: 443, hostname: 'example.com' },development: { ssl: false, port: 4000, hostname: 'localhost' },};const environment = process.env.NODE_ENV || 'production';const config = configurations[environment];const server = new ApolloServer({typeDefs,resolvers,csrfPrevention: true,cache: 'bounded',plugins: [ApolloServerPluginLandingPageLocalDefault({ embed: true })],});await server.start();const app = express();server.applyMiddleware({ app });// Create the HTTPS or HTTP server, per configurationlet httpServer;if (config.ssl) {// Assumes certificates are in a .ssl folder off of the package root.// Make sure these files are secured.httpServer = https.createServer({key: fs.readFileSync(`./ssl/${environment}/server.key`),cert: fs.readFileSync(`./ssl/${environment}/server.crt`),},app,);} else {httpServer = http.createServer(app);}await new Promise<void>((resolve) => httpServer.listen({ port: config.port }, resolve));console.log('🚀 Server ready at', `http${config.ssl ? 's' : ''}://${config.hostname}:${config.port}${server.graphqlPath}`);return { server, app };}
index.js
import express from 'express';import { ApolloServer } from 'apollo-server-express';import { ApolloServerPluginLandingPageLocalDefault } from 'apollo-server-core';import typeDefs from './graphql/schema';import resolvers from './graphql/resolvers';import fs from 'fs';import https from 'https';import http from 'http';async function startApolloServer() {const configurations = {// Note: You may need sudo to run on port 443production: { ssl: true, port: 443, hostname: 'example.com' },development: { ssl: false, port: 4000, hostname: 'localhost' },};const environment = process.env.NODE_ENV || 'production';const config = configurations[environment];const server = new ApolloServer({typeDefs,resolvers,csrfPrevention: true,cache: 'bounded',plugins: [ApolloServerPluginLandingPageLocalDefault({ embed: true })],});await server.start();const app = express();server.applyMiddleware({ app });// Create the HTTPS or HTTP server, per configurationlet httpServer;if (config.ssl) {// Assumes certificates are in a .ssl folder off of the package root.// Make sure these files are secured.httpServer = https.createServer({key: fs.readFileSync(`./ssl/${environment}/server.key`),cert: fs.readFileSync(`./ssl/${environment}/server.crt`),},app,);} else {httpServer = http.createServer(app);}await new Promise((resolve) => httpServer.listen({ port: config.port }, resolve));console.log('🚀 Server ready at', `http${config.ssl ? 's' : ''}://${config.hostname}:${config.port}${server.graphqlPath}`);return { server, app };}