Nginx Docker 容器化配置详细说明

1. 创建 Dockerfile

首先,创建一个 Dockerfile 文件来定义 Nginx 容器的构建步骤。

# 使用官方 Nginx 镜像作为基础镜像
FROM nginx:latest

# 将本地的配置文件复制到容器中的 Nginx 配置目录
COPY nginx.conf /etc/nginx/nginx.conf

# 将本地的静态文件复制到容器中的默认站点目录
COPY ./html /usr/share/nginx/html

# 暴露 80 端口
EXPOSE 80

# 启动 Nginx
CMD ["nginx", "-g", "daemon off;"]

2. 创建 Nginx 配置文件

创建一个 nginx.conf 文件来定义 Nginx 的配置。

worker_processes 1;

events {
    worker_connections 1024;
}

http {
    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    server {
        listen 80;
        server_name localhost;

        location / {
            root /usr/share/nginx/html;
            index index.html index.htm;
        }

        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
            root /usr/share/nginx/html;
        }
    }
}

3. 创建静态文件

html 目录下创建一个 index.html 文件。

<!DOCTYPE html>
<html>
<head>
    <title>Welcome to Nginx!</title>
</head>
<body>
    <h1>Welcome to Nginx!</h1>
    <p>This is a sample page served by Nginx in a Docker container.</p>
</body>
</html>

4. 构建 Docker 镜像

在包含 Dockerfile 的目录下运行以下命令来构建 Docker 镜像。

docker build -t my-nginx .

5. 运行 Docker 容器

使用以下命令运行 Nginx 容器。

docker run -d -p 8080:80 --name my-nginx-container my-nginx

6. 访问 Nginx

在浏览器中访问 http://localhost:8080,你应该会看到 index.html 文件的内容。

案例

假设你有一个简单的静态网站,包含以下文件结构:

my-nginx/
├── Dockerfile
├── nginx.conf
└── html/
    ├── index.html
    └── 50x.html

按照上述步骤,你可以将这个静态网站容器化,并通过 Docker 运行 Nginx 来提供服务。

总结

通过 Docker 容器化 Nginx,你可以轻松地部署和管理 Nginx 服务。Dockerfile 定义了容器的构建步骤,nginx.conf 配置了 Nginx 的行为,而静态文件则通过容器内的 Nginx 提供服务。

本篇文章内容来源于:NginxDocker容器化配置详细说明以及案例