Docker 에 nginx 설치

3715 단어 Docker
Docker 에 nginx 설치
1. 먼저 docker hub 에서 원 하 는 버 전 을 찾 아 보 세 요.
2. nginx 미 러
     docker pull nginx:1.15.11(        )

3. 미 러 실행
1. 보급
       docker                 nginx                               

docker 에서 nginx 의 설정 파일 경 로 는 / etc / nginx / nginx. conf 로그 의 경 로 는 / var / log / nginx 자원 경 로 는 / etc / nginx / html 이상 docker 에서 nginx 를 실행 하 는 기본 설정 경로 입 니 다.
2. 마 운 트 된 디 렉 터 리 만 들 기
mkdir - p / usr / local / nginx / {conf, conf. d, html, logs}
nginx. conf (nginx 기본 설정) 자원 경 로 를 호스트 의 자원 경로 (구덩이) 가 아 닌 nginx 용기 의 자원 경로 로 바 꿔 야 합 니 다.


#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;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root  /usr/share/nginx/html;
            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: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;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

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


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

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

}

사이트 자원 은 바로 하 나 를 복사 하면 됩 니 다.
3. 미 러 실행
docker run - p 80: 80 -- name mynginx - v / usr / local / ngnix / logs /: / var / log / nginx - v / usr / local / ngnix / ngnix. conf: / etc / nginx / nginx. conf - v / usr / local / ngnix / html /: / etc / nginx / html - d nginx: 1.15.11 암호 샘플 이 나타 나 면 실행 에 성공

좋은 웹페이지 즐겨찾기