Docker 安装并配置 nginx

1.安装

docker pull nginx

2.docker 中启动nginx

docker run --name my-nginx -d \

--restart=always \

-p 80:80 \

-v 自己的nginx日志目录:/var/log/nginx \

-v 自己的静态文件目录:/etc/nginx/html \

-v 自己的nginx.conf:/etc/nginx/nginx.conf:ro nginx

3.自己的nginx.conf(仅供参考)

#user  nobody;

worker_processes  1;

#error_log  logs/error.log;

#error_log  logs/error.log  notice;

#error_log  logs/error.log  info;

#pid        logs/nginx.pid;

events {

   worker_connections  1024;

}

http {

   include       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  logs/access.log  main;

   sendfile        on;

   #tcp_nopush     on;

   #keepalive_timeout  0;

   keepalive_timeout  65;

   #gzip  on;

   server {

     listen 80;

     server_name localhost;

     location / {

       root html;//此处不用修改

       index  index.html index.htm;

     }

   }

}


(⊙v⊙)嗯,就这样,简简单单!踩了不少坑

你可能感兴趣的:(Docker 安装并配置 nginx)