【DOCKER】基于DOCKER的服务之nginx文件下载服务器

1. 创建数据卷文件夹

bash 复制代码
mkdir -p ${HOME}/.docker/volumes/nginx_file/download

2. 创建配置文件

bash 复制代码
vim ${HOME}/.docker/volumes/nginx_file/nginx.conf

拷贝一下内容到文件

复制代码
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
include /usr/share/nginx/modules/*.conf;
events {
    worker_connections 1024;
}
http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
    access_log  /var/log/nginx/access.log  main;
    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;
    default_type        application/octet-stream;
    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    include /etc/nginx/conf.d/*.conf;
    server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name  _;
        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;
        location / {
            root    /usr/share/nginx/html/download;
        autoindex on;    #开启索引功能
        autoindex_exact_size off;  #关闭计算文件确切大小(单位bytes),只显示大概大小(单位kb、mb、gb)
        autoindex_localtime on;   #显示本机时间而非 GMT 时间
        }
        error_page 404 /404.html;
            location = /40x.html {
        }
        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }
}

3. 拉取镜像与创建容器

bash 复制代码
# 拉取镜像
docker pull nginx

# 创建容器
docker run                                             \
--detach                                               \
--publish 51080:80                                     \
--name=nginx_file                                      \
--restart=always                                       \
--privileged=true                                      \
--volume /var/run/docker.sock:/var/run/docker.sock     \
--volume ${HOME}/.docker/volumes/nginx_file/nginx.conf:/etc/nginx/nginx.conf \
--volume ${HOME}/.docker/volumes/nginx_file/download:/usr/share/nginx/html/download \
nginx

# 浏览器中输入:
# http://172.17.0.1:51080
相关推荐
躲在云朵里`12 分钟前
Linux环境下部署SpringBoot前后端分离项目
linux·服务器
llilian_1614 分钟前
时间同步校时服务器配件清单及挑选攻略 校时时间服务器 网络时间同步装置
运维·服务器·网络
oMcLin14 分钟前
如何在Ubuntu 20.04系统的香港服务器上使用Docker搭建高效的CI/CD流水线并集成Kubernetes?
服务器·ubuntu·docker
nvd1120 分钟前
通过 Gmail API 发送邮件的完整指南
服务器·网络
深圳市恒讯科技22 分钟前
防止服务器被黑:终极防范网络攻击指南
运维·服务器·网络安全
VicdorLin23 分钟前
docker报错: client version 1.24 is too old. Minimum supported API version is 1.44
运维·docker·容器
橘颂TA24 分钟前
【Linux】从 “抢资源” 到 “优雅控场”:Linux 互斥锁的原理与 C++ RAII 封装实战(Ⅰ)
linux·运维·服务器·c++·算法
RisunJan25 分钟前
Linux命令-init命令(管理运行级别和控制系统状态)
linux·运维·服务器
ayaya_mana25 分钟前
Chrony:通用-替换国内 NTP 源进行时间同步
linux·运维·服务器·chrony
深耕半夜26 分钟前
debug函数
linux·运维·服务器