Docker安装Nginx且配置静态资源访问

docker安装Nginx且配置静态资源访问

1下载镜像

docker pull nginx

2.创建挂载目录

mkdir -p /data/nginx/{conf,conf.d,html,logs}

3.编辑挂载目录下的conf,添加nginx.conf文件。内容查看/etc/nginx/conf/nainx.conf。

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


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

    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;

    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   /images;
            index  index.html index.htm;
        }
    }

    include /etc/nginx/conf.d/*.conf;
}

4.编辑挂载目录下的conf.d创建文件default.conf内容如上一步,去拷贝,在这里可以修改我们的域名,以及访问的静态目录。

server {

    listen       80;
    server_name  localhost;
    #charset koi8-r;
    #access_log  /var/log/nginx/log/host.access.log  main;

    location / {
        #root   /data/nginx/html;
        root   /usr/share/nginx/html;
        index  index.html index.htm;
        #autoindex  on;开启访问目录权限
    #try_files $uri /index/index/page.html;
        #try_files $uri /index/map/page.html;
    }

    #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:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    #    include        fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}

4运行镜像

在这里插入代码片
docker run --name nginx83 -d -p 83:80 -v /data/nginx/html:/usr/share/nginx/html -v /data/nginx/conf/nginx.conf:/etc/nginx/nginx.conf  -v /data/nginx/logs:/var/log/nginx -v /data/nginx/conf.d:/etc/nginx/conf.d -d nginx

5.访问效果
在这里插入图片描述

要在Docker容器中部署和访问静态资源Nginx,您可以按照以下步骤进行操作: 1. 在您的项目目录中创建一个名为 `Dockerfile` 的文件,并添加以下内容: ```Dockerfile # 使用基础的Nginx映像 FROM nginx # 将静态资源复制到Nginx默认的静态资源文件夹中 COPY your_static_files_folder /usr/share/nginx/html # 替换Nginx默认的配置文件 COPY nginx.conf /etc/nginx/nginx.conf # 暴露Nginx的默认端口 EXPOSE 80 ``` 2. 在您的项目目录中创建一个名为 `nginx.conf` 的文件,并根据您的需求进行配置。以下是一个简单的示例配置文件: ```nginx # 全局配置 worker_processes auto; error_log /var/log/nginx/error.log; # http块配置 http { server { listen 80; location / { root /usr/share/nginx/html; index index.html index.htm; } } } ``` 3. 将您的静态资源文件夹复制到与 `Dockerfile` 同级的位置。 4. 在终端中导航到您的项目目录,并使用以下命令构建Docker镜像: ```bash docker build -t my_nginx . ``` 这将使用 `Dockerfile` 中的指令构建一个名为 `my_nginx` 的镜像。 5. 构建完成后,可以使用以下命令运行容器并将Nginx的80端口映射到主机的某个端口(例如8888): ```bash docker run -d -p 8888:80 my_nginx ``` 现在,您可以通过访问 `http://localhost:8888` 来访问您的静态资源。 请确保将 `your_static_files_folder` 替换为您实际的静态资源文件夹路径,并根据需要自定义Nginx配置文件
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值