centos使用Docker部署Nginx作为静态资源服务器

本文介绍了如何在CentOS系统中利用Docker部署Nginx服务器,作为静态资源服务。首先拉取Nginx Docker镜像,然后创建配置文件default.conf,设置资源路径为/home/humanImgs。接着在主机上建立相应目录并挂载到容器内,启动Nginx容器,将80端口映射到主机10010端口。通过修改主机上的default.conf文件可以动态调整Nginx配置。最后,通过访问特定URL即可查看挂载目录中的资源文件。
摘要由CSDN通过智能技术生成

1、在安装了Docker的centos机器上使用以下命令拉取nginx镜像

docker pull nginx

 

2、在主机根目录下新建一个/etc/nginx/conf.d/目录,在该目录下新建一个default.conf文件,文件内容如下

server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        root   /home/humanImgs;
        index  index.html index.htm;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:900
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值