Nginx web server
Everything you need to deploy Nginx with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Nginx up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Nginx with:
blastdock init nginx
Interactive mode:
blastdock init nginx -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Nginx installation with these configuration options.
HTTP port
HTTPS port
Server name
Complete Docker Compose configuration for Nginx deployment.
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