NGINX

Nginx web server

80
Default Port
1
Services
6.0/20
Complexity
Low
Memory Usage
Configuration

Installation Command

blastdock init nginx

Template Overview

Everything you need to deploy Nginx with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Nginx
nginx:alpine
Categories
Other
Security Features
SSL/HTTPS Support
Resource Requirements
CPU: Low, Memory: Low

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Nginx up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Nginx with:

Terminal
blastdock init nginx

Interactive mode:

Terminal
blastdock init nginx -i

What's Included

Nginx
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Nginx installation with these configuration options.

3
Required Fields
0
Optional Fields
0
Auto-Generated Passwords

Http Port

HTTP port

port
Default: 80
Required: Yes

Https Port

HTTPS port

port
Default: 443
Required: Yes

Server Name

Server name

domain
Default: localhost
Required: Yes

Docker Compose

Complete Docker Compose configuration for Nginx deployment.

1
Services
0
Volumes
1
Networks
2
Exposed Ports
docker-compose.yml
version: '3.8'

services:
  nginx:
    image: nginx:alpine
    container_name: {{ project_name }}_nginx
    restart: unless-stopped
    ports:
      - "80"
      - "443"
    volumes:
      - /etc/nginx/nginx.conf:ro
      - /etc/nginx/conf.d:ro
      - /var/www/html:ro
      - /var/log/nginx
    networks:
      - nginx_network

networks:
  nginx_network:
    driver: bridge